From d3a01e0c96237ca060e3451d2b80e692dfb3b8f6 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Tue, 24 Nov 2009 18:24:07 +0000 Subject: [PATCH] debug: remove the COGL_DEBUG=client-side-matrices option Cogl only supports client side matrices so this debug option is no longer useful. --- clutter/cogl/cogl/cogl-debug.c | 1 - clutter/cogl/cogl/cogl-debug.h | 13 ++++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/clutter/cogl/cogl/cogl-debug.c b/clutter/cogl/cogl/cogl-debug.c index 3545de860..1265595f9 100644 --- a/clutter/cogl/cogl/cogl-debug.c +++ b/clutter/cogl/cogl/cogl-debug.c @@ -42,7 +42,6 @@ static const GDebugKey cogl_debug_keys[] = { { "handle", COGL_DEBUG_HANDLE }, { "blend-strings", COGL_DEBUG_BLEND_STRINGS }, { "disable-batching", COGL_DEBUG_DISABLE_BATCHING }, - { "client-side-matrices", COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES }, { "disable-vbos", COGL_DEBUG_DISABLE_VBOS }, { "journal", COGL_DEBUG_JOURNAL }, { "batching", COGL_DEBUG_BATCHING }, diff --git a/clutter/cogl/cogl/cogl-debug.h b/clutter/cogl/cogl/cogl-debug.h index fb0e839ee..bc450aa99 100644 --- a/clutter/cogl/cogl/cogl-debug.h +++ b/clutter/cogl/cogl/cogl-debug.h @@ -40,13 +40,12 @@ typedef enum { COGL_DEBUG_HANDLE = 1 << 8, COGL_DEBUG_BLEND_STRINGS = 1 << 9, COGL_DEBUG_DISABLE_BATCHING = 1 << 10, - COGL_DEBUG_FORCE_CLIENT_SIDE_MATRICES = 1 << 11, - COGL_DEBUG_DISABLE_VBOS = 1 << 12, - COGL_DEBUG_JOURNAL = 1 << 13, - COGL_DEBUG_BATCHING = 1 << 14, - COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM = 1 << 15, - COGL_DEBUG_MATRICES = 1 << 16, - COGL_DEBUG_FORCE_SCANLINE_PATHS = 1 << 17 + COGL_DEBUG_DISABLE_VBOS = 1 << 11, + COGL_DEBUG_JOURNAL = 1 << 12, + COGL_DEBUG_BATCHING = 1 << 13, + COGL_DEBUG_DISABLE_SOFTWARE_TRANSFORM = 1 << 14, + COGL_DEBUG_MATRICES = 1 << 15, + COGL_DEBUG_FORCE_SCANLINE_PATHS = 1 << 16 } CoglDebugFlags; #ifdef COGL_ENABLE_DEBUG