diff options
author | Alexander Larsson <alexl@redhat.com> | 2013-09-09 11:07:50 +0200 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2013-09-09 11:07:50 +0200 |
commit | 92edb7650086e1ec55b804a7d8032f220c740757 (patch) | |
tree | 5fa8e8466c49c30bccc6df035f84e6dc321792f8 /gtk/gtkdebug.h | |
parent | 9a45712ad674782841c83a01f810042ab92b60cd (diff) | |
download | gtk+-92edb7650086e1ec55b804a7d8032f220c740757.tar.gz |
Pixel cache: Add no-pixel-cache debug flag
This is useful for benchmarking comparisons, and to verify if bugs
happend with or without the pixel cache.
Diffstat (limited to 'gtk/gtkdebug.h')
-rw-r--r-- | gtk/gtkdebug.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkdebug.h b/gtk/gtkdebug.h index d98c1974a0..a91e6da636 100644 --- a/gtk/gtkdebug.h +++ b/gtk/gtkdebug.h @@ -50,7 +50,8 @@ typedef enum { GTK_DEBUG_SIZE_REQUEST = 1 << 12, GTK_DEBUG_NO_CSS_CACHE = 1 << 13, GTK_DEBUG_BASELINES = 1 << 14, - GTK_DEBUG_PIXEL_CACHE = 1 << 15 + GTK_DEBUG_PIXEL_CACHE = 1 << 15, + GTK_DEBUG_NO_PIXEL_CACHE = 1 << 16 } GtkDebugFlag; #ifdef G_ENABLE_DEBUG |