diff options
author | Timothy Arceri <[email protected]> | 2013-08-26 16:39:46 +1000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-09-04 07:47:48 -0600 |
commit | 77d38fd3fb5a915911f81bca538c0f0b9d8ad64f (patch) | |
tree | beee6e6534f924b43d9b678d50355a44bfcc5660 /src/mesa/main/errors.c | |
parent | 644fbbd3ebe58ee2237395904f83e085f221d52d (diff) |
mesa: Add some constants and state variables for KHR_debug functions
Signed-off-by: Timothy Arceri <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/errors.c')
-rw-r--r-- | src/mesa/main/errors.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c index cc93d3bd603..eea72910b3b 100644 --- a/src/mesa/main/errors.c +++ b/src/mesa/main/errors.c @@ -66,12 +66,16 @@ static const GLenum debug_type_enums[] = { GL_DEBUG_TYPE_PORTABILITY, GL_DEBUG_TYPE_PERFORMANCE, GL_DEBUG_TYPE_OTHER, + GL_DEBUG_TYPE_MARKER, + GL_DEBUG_TYPE_PUSH_GROUP, + GL_DEBUG_TYPE_POP_GROUP, }; static const GLenum debug_severity_enums[] = { GL_DEBUG_SEVERITY_LOW, GL_DEBUG_SEVERITY_MEDIUM, GL_DEBUG_SEVERITY_HIGH, + GL_DEBUG_SEVERITY_NOTIFICATION, }; static enum mesa_debug_source |