gsk: Add a debug flag for transforms

This commit is contained in:
Matthias Clasen 2016-08-02 21:53:31 -04:00 committed by Emmanuele Bassi
parent 23745462a4
commit 819ffdd5c2
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@ static const GDebugKey gsk_debug_keys[] = {
{ "cairo", GSK_DEBUG_CAIRO },
{ "opengl", GSK_DEBUG_OPENGL },
{ "shaders", GSK_DEBUG_SHADERS },
{ "transforms", GSK_DEBUG_TRANSFORMS }
};
#endif

View File

@ -10,7 +10,8 @@ typedef enum {
GSK_DEBUG_RENDERER = 1 << 1,
GSK_DEBUG_CAIRO = 1 << 2,
GSK_DEBUG_OPENGL = 1 << 3,
GSK_DEBUG_SHADERS = 1 << 4
GSK_DEBUG_SHADERS = 1 << 4,
GSK_DEBUG_TRANSFORMS = 1 << 5
} GskDebugFlags;
typedef enum {