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>
This commit is contained in:
Ian Romanick 2014-04-01 12:56:31 -07:00
parent 4e18279fae
commit 8e3a7c6204
1 changed files with 4 additions and 4 deletions

View File

@ -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) },