diff options
author | George Sapountzis <[email protected]> | 2010-03-02 03:31:16 +0200 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2010-03-02 03:32:43 +0200 |
commit | d3f24ab33c284325abaf4b250f8928d4d53836e1 (patch) | |
tree | 41a8d5666b9bd7ddc64a2c67bfb8444b8f4167d3 /src/mesa/glapi/glapi_getproc.c | |
parent | 6e48f17a1620dda83e0fedd68a8f004ed1fbfea9 (diff) |
glapi: fix compile with ES
Diffstat (limited to 'src/mesa/glapi/glapi_getproc.c')
-rw-r--r-- | src/mesa/glapi/glapi_getproc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/glapi/glapi_getproc.c b/src/mesa/glapi/glapi_getproc.c index 5be6d65b562..a6dbf173e82 100644 --- a/src/mesa/glapi/glapi_getproc.c +++ b/src/mesa/glapi/glapi_getproc.c @@ -773,6 +773,7 @@ _glapi_get_proc_name(GLuint offset) void _glapi_check_table(const struct _glapi_table *table) { +#if 0 /* enable this for extra DEBUG */ { GLuint BeginOffset = _glapi_get_proc_offset("glBegin"); char *BeginFunc = (char*) &table->Begin; @@ -829,4 +830,7 @@ _glapi_check_table(const struct _glapi_table *table) assert(setFenceOffset == _gloffset_SetFenceNV); assert(setFenceOffset == offset); } +#else + (void) table; +#endif } |