mesa: add GL_KHR_debug functions to dispatch_sanity.cpp

Fixes 'make check' failures.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:
Brian Paul 2013-09-04 13:29:36 -06:00
parent 238201158f
commit ac8448dd97

View file

@ -896,6 +896,18 @@ const struct function gl_core_functions_possible[] = {
/* GL_ARB_internalformat_query */
{ "glGetInternalformativ", 30, -1 },
/* GL_KHR_debug */
{ "glPushDebugGroup", 11, -1 },
{ "glPopDebugGroup", 11, -1 },
{ "glDebugMessageCallback", 11, -1 },
{ "glDebugMessageControl", 11, -1 },
{ "glDebugMessageInsert", 11, -1 },
{ "glGetDebugMessageLog", 11, -1 },
{ "glGetObjectLabel", 11, -1 },
{ "glGetObjectPtrLabel", 11, -1 },
{ "glObjectLabel", 11, -1 },
{ "glObjectPtrLabel", 11, -1 },
{ NULL, 0, -1 }
};