mesa: add GL_KHR_debug functions to dispatch_sanity.cpp
authorBrian Paul <brianp@vmware.com>
Wed, 4 Sep 2013 19:29:36 +0000 (13:29 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 6 Sep 2013 13:53:41 +0000 (07:53 -0600)
Fixes 'make check' failures.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mesa/main/tests/dispatch_sanity.cpp

index 8d3774775fcab092e08621ef22ff5b30918b3b99..bea6e964b410a1f648aab30f5e322bb9e8b881e2 100644 (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 }
 };