aboutsummaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/tests/check_table.cpp
diff options
context:
space:
mode:
authorJon TURNEY <[email protected]>2013-02-27 15:32:37 +0000
committerJon TURNEY <[email protected]>2013-03-13 14:55:52 +0000
commit28e169363033aff7752382d790886eaadd4787f9 (patch)
tree28309d2e4498dd5218fa6a00ecba29c811a025e9 /src/mapi/glapi/tests/check_table.cpp
parented8ddd57e904f9a1a007d1f4b3142dbb8a08f244 (diff)
Properly check GLX_INDIRECT_RENDERING in glapi/tests/check_table
Actually use $DEFINES, so we can see if GLX_INDIRECT_RENDERING is defined If GLX_INDIRECT_RENDERING is defined, _GLAPI_SKIP_PROTO_ENTRY_POINTS will be defined, and libglapi won't contain the 'protocol entry points', so we should provide stubs in check_table.cpp
Diffstat (limited to 'src/mapi/glapi/tests/check_table.cpp')
-rw-r--r--src/mapi/glapi/tests/check_table.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/tests/check_table.cpp b/src/mapi/glapi/tests/check_table.cpp
index dffec83270d..375645b9406 100644
--- a/src/mapi/glapi/tests/check_table.cpp
+++ b/src/mapi/glapi/tests/check_table.cpp
@@ -1511,7 +1511,7 @@ const struct name_offset known_dispatch[] = {
{ NULL, 0 }
};
-#ifndef GLX_INDIRECT_RENDERING
+#ifdef GLX_INDIRECT_RENDERING
extern "C" {
GLAPI GLboolean GLAPIENTRY
glAreTexturesResidentEXT(GLsizei n, const GLuint *textures,