projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f39954b
)
mesa: return the correct value for GroupStackDepth
author
Emil Velikov
<emil.l.velikov@gmail.com>
Thu, 26 Nov 2015 00:36:13 +0000
(
00:36
+0000)
committer
Emil Velikov
<emil.l.velikov@gmail.com>
Thu, 3 Dec 2015 19:20:58 +0000
(19:20 +0000)
We already have one group (the default) as specified in the spec. So
lets return its size, rather than the index of the current group.
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Timothy Arceri <timothy.arceri@collabora.com>
src/mesa/main/errors.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/errors.c
b/src/mesa/main/errors.c
index 88fc0283ed4f1292ee64dc4def5bed437bd50188..fda5a90bf5ee9a51758ae22f90de8463f12cc83d 100644
(file)
--- a/
src/mesa/main/errors.c
+++ b/
src/mesa/main/errors.c
@@
-775,7
+775,7
@@
_mesa_get_debug_state_int(struct gl_context *ctx, GLenum pname)
debug->Log.Messages[debug->Log.NextMessage].length : 0;
break;
case GL_DEBUG_GROUP_STACK_DEPTH:
- val = debug->CurrentGroup;
+ val = debug->CurrentGroup
+ 1
;
break;
default:
assert(!"unknown debug output param");