diff options
author | Ian Romanick <[email protected]> | 2014-04-01 12:56:31 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-04-02 11:30:42 -0700 |
commit | 8e3a7c620440fab014e41b18badf73ca9dfdba45 (patch) | |
tree | 40be8737d955a4ec0dcf0259fc1c3e6736470426 /src/mapi/glapi/tests/check_table.cpp | |
parent | 4e18279fae2f5d91fb8475c1c6ac02a46121c642 (diff) |
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 <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Tested-by: Brian Paul <[email protected]>
Tested-by: Lu Hua <[email protected]>
Cc: Vinson Lee <[email protected]>
Diffstat (limited to 'src/mapi/glapi/tests/check_table.cpp')
-rw-r--r-- | src/mapi/glapi/tests/check_table.cpp | 8 |
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 375645b9406..89d9073a4ec 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) }, |