mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-07 16:00:24 +01:00
[cairo-perf] Blacklist xlib-fallback.
Do not try and create non-Render xlib surfaces as they explicitly do not support performance testing.
This commit is contained in:
parent
8894894d9d
commit
24075f1bdd
1 changed files with 8 additions and 0 deletions
|
|
@ -78,6 +78,14 @@ target_is_measurable (cairo_boilerplate_target_t *target)
|
|||
return TRUE;
|
||||
}
|
||||
case CAIRO_SURFACE_TYPE_XLIB:
|
||||
if (strcmp (target->name, "xlib-fallback") == 0)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
case CAIRO_SURFACE_TYPE_XCB:
|
||||
case CAIRO_SURFACE_TYPE_GLITZ:
|
||||
case CAIRO_SURFACE_TYPE_QUARTZ:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue