diff options
author | George Sapountzis <[email protected]> | 2010-02-25 17:52:05 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2010-02-25 17:52:05 +0200 |
commit | f1f33f929366e452046de27429fc730a83d11c4b (patch) | |
tree | cc8c02ecba2b8cd4cb8bb0cab88cc083e25afc65 | |
parent | ec91810147425f4123ec80117109925e054cc66d (diff) |
glapi: EXTRA_DEBUG is never defined, make this explicit
-rw-r--r-- | src/mesa/glapi/glapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glapi.c b/src/mesa/glapi/glapi.c index 631ffba3c7f..2fa673d307d 100644 --- a/src/mesa/glapi/glapi.c +++ b/src/mesa/glapi/glapi.c @@ -490,7 +490,7 @@ _glapi_get_dispatch_table_size(void) void _glapi_check_table(const struct _glapi_table *table) { -#ifdef EXTRA_DEBUG +#if 0 /* Enable this for extra DEBUG */ const GLuint entries = _glapi_get_dispatch_table_size(); const void **tab = (const void **) table; GLuint i; |