diff options
-rw-r--r-- | boilerplate/cairo-boilerplate.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/boilerplate/cairo-boilerplate.h b/boilerplate/cairo-boilerplate.h index 461b98b6..4f6b8fde 100644 --- a/boilerplate/cairo-boilerplate.h +++ b/boilerplate/cairo-boilerplate.h @@ -113,7 +113,12 @@ cairo_boilerplate_format_from_content (cairo_content_t content); typedef enum { CAIRO_BOILERPLATE_MODE_TEST, - CAIRO_BOILERPLATE_MODE_PERF + CAIRO_BOILERPLATE_MODE_PERF, + + /* This will allow running performance test with threads. The + * GL backend is very slow on some drivers when run with thread + * awareness turned on. */ + CAIRO_BOILERPLATE_MODE_PERF_THREADS, } cairo_boilerplate_mode_t; typedef cairo_surface_t * |