Mesa (master): mesa: add GL_KHR_debug functions to dispatch_sanity.cpp

Brian Paul brianp at kemper.freedesktop.org
Fri Sep 6 13:53:43 UTC 2013


Module: Mesa
Branch: master
Commit: ac8448dd9779478b570ef15f7232cfcf22f2d3db
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ac8448dd9779478b570ef15f7232cfcf22f2d3db

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Sep  4 13:29:36 2013 -0600

mesa: add GL_KHR_debug functions to dispatch_sanity.cpp

Fixes 'make check' failures.

Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>

---

 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 8d37747..bea6e96 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 }
 };
 




More information about the mesa-commit mailing list