[perf] Exclude the xlib-reference target from cairo-perf

This commit is contained in:
Chris Wilson 2009-06-30 22:22:39 +01:00
parent e5b4f78bff
commit 1564d67d63
2 changed files with 4 additions and 2 deletions

View file

@ -87,7 +87,8 @@ target_is_measurable (const cairo_boilerplate_target_t *target)
return TRUE;
}
case CAIRO_SURFACE_TYPE_XLIB:
if (strcmp (target->name, "xlib-fallback") == 0)
if (strcmp (target->name, "xlib-fallback") == 0 ||
strcmp (target->name, "xlib-reference") == 0)
{
return FALSE;
}

View file

@ -80,7 +80,8 @@ target_is_measurable (const cairo_boilerplate_target_t *target)
return TRUE;
}
case CAIRO_SURFACE_TYPE_XLIB:
if (strcmp (target->name, "xlib-fallback") == 0)
if (strcmp (target->name, "xlib-fallback") == 0 ||
strcmp (target->name, "xlib-reference") == 0)
{
return FALSE;
}