summaryrefslogtreecommitdiffstats
path: root/src/mapi/glapi/tests
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2014-04-01 12:56:31 -0700
committerIan Romanick <ian.d.romanick@intel.com>2014-04-02 11:30:42 -0700
commit8e3a7c620440fab014e41b18badf73ca9dfdba45 (patch)
tree40be8737d955a4ec0dcf0259fc1c3e6736470426 /src/mapi/glapi/tests
parent4e18279fae2f5d91fb8475c1c6ac02a46121c642 (diff)
downloadexternal_mesa3d-8e3a7c620440fab014e41b18badf73ca9dfdba45.zip
external_mesa3d-8e3a7c620440fab014e41b18badf73ca9dfdba45.tar.gz
external_mesa3d-8e3a7c620440fab014e41b18badf73ca9dfdba45.tar.bz2
glapi: Fix build break in 'make check' on non-shared-glapi builds
Commit fb78fa58 made the GL_ARB_debug_output functions aliases of the GL_KHR_debug output functions. As a result, the function names in struct _glapi_table also changed. The table in check_table.cpp used the ARB names. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Timothy Arceri <t_arceri@yahoo.com.au> Tested-by: Brian Paul <brianp@vmware.com> Tested-by: Lu Hua <huax.lu@intel.com> Cc: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'src/mapi/glapi/tests')
-rw-r--r--src/mapi/glapi/tests/check_table.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mapi/glapi/tests/check_table.cpp b/src/mapi/glapi/tests/check_table.cpp
index 375645b..89d9073 100644
--- a/src/mapi/glapi/tests/check_table.cpp
+++ b/src/mapi/glapi/tests/check_table.cpp
@@ -1227,10 +1227,10 @@ const struct name_offset known_dispatch[] = {
{ "glGetShaderPrecisionFormat", _O(GetShaderPrecisionFormat) },
{ "glReleaseShaderCompiler", _O(ReleaseShaderCompiler) },
{ "glShaderBinary", _O(ShaderBinary) },
- { "glDebugMessageCallbackARB", _O(DebugMessageCallbackARB) },
- { "glDebugMessageControlARB", _O(DebugMessageControlARB) },
- { "glDebugMessageInsertARB", _O(DebugMessageInsertARB) },
- { "glGetDebugMessageLogARB", _O(GetDebugMessageLogARB) },
+ { "glDebugMessageCallback", _O(DebugMessageCallback) },
+ { "glDebugMessageControl", _O(DebugMessageControl) },
+ { "glDebugMessageInsert", _O(DebugMessageInsert) },
+ { "glGetDebugMessageLog", _O(GetDebugMessageLog) },
{ "glGetGraphicsResetStatusARB", _O(GetGraphicsResetStatusARB) },
{ "glGetnColorTableARB", _O(GetnColorTableARB) },
{ "glGetnCompressedTexImageARB", _O(GetnCompressedTexImageARB) },