gdk: Remove unused debug category

This commit is contained in:
Benjamin Otte 2017-01-07 15:27:02 +01:00
parent 1e6fce97a5
commit bc797f38f5
2 changed files with 5 additions and 7 deletions

View File

@ -166,7 +166,6 @@ static const GDebugKey gdk_debug_keys[] = {
{ "cursor", GDK_DEBUG_CURSOR },
{ "multihead", GDK_DEBUG_MULTIHEAD },
{ "xinerama", GDK_DEBUG_XINERAMA },
{ "draw", GDK_DEBUG_DRAW },
{ "eventloop", GDK_DEBUG_EVENTLOOP },
{ "frames", GDK_DEBUG_FRAMES },
{ "settings", GDK_DEBUG_SETTINGS },

View File

@ -64,12 +64,11 @@ typedef enum {
GDK_DEBUG_CURSOR = 1 << 6,
GDK_DEBUG_MULTIHEAD = 1 << 7,
GDK_DEBUG_XINERAMA = 1 << 8,
GDK_DEBUG_DRAW = 1 << 9,
GDK_DEBUG_EVENTLOOP = 1 << 10,
GDK_DEBUG_FRAMES = 1 << 11,
GDK_DEBUG_SETTINGS = 1 << 12,
GDK_DEBUG_OPENGL = 1 << 13,
GDK_DEBUG_VULKAN = 1 << 14
GDK_DEBUG_EVENTLOOP = 1 << 9,
GDK_DEBUG_FRAMES = 1 << 10,
GDK_DEBUG_SETTINGS = 1 << 11,
GDK_DEBUG_OPENGL = 1 << 12,
GDK_DEBUG_VULKAN = 1 << 13
} GdkDebugFlag;
typedef enum {