mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 14:30:10 +01:00
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:
parent
238201158f
commit
ac8448dd97
1 changed files with 12 additions and 0 deletions
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue