diff options
author | Brian Paul <[email protected]> | 2013-09-04 13:29:36 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-09-06 07:53:41 -0600 |
commit | ac8448dd9779478b570ef15f7232cfcf22f2d3db (patch) | |
tree | ab7b5977c7b6b3bbc7e06c24ede4b40f20499cb6 /src/mesa | |
parent | 238201158fd5caefb960b6b7eb5c4e92ac802f8b (diff) |
mesa: add GL_KHR_debug functions to dispatch_sanity.cpp
Fixes 'make check' failures.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/tests/dispatch_sanity.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/tests/dispatch_sanity.cpp b/src/mesa/main/tests/dispatch_sanity.cpp index 8d3774775fc..bea6e964b41 100644 --- a/src/mesa/main/tests/dispatch_sanity.cpp +++ b/src/mesa/main/tests/dispatch_sanity.cpp @@ -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 } }; |