diff options
author | Timothy Arceri <[email protected]> | 2013-08-26 17:01:16 +1000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-09-04 07:47:48 -0600 |
commit | 797b9dc3ffdba54724127bbfe6ef52e248bdfaf5 (patch) | |
tree | a3e3ca348297393e66e8ef70cd52cf278b5b17a5 /src/mesa/main/errors.h | |
parent | 60f435319c7046658ece72167c42e09c7a7a44e0 (diff) |
mesa: Implement glPushDebugGroup and glPopDebugGroup
V4: fixes _mesa_error() compiler warnings (BrianP).
V3: removed C++ style comment
V2: fixed spelling typo in comment
Signed-off-by: Timothy Arceri <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/errors.h')
-rw-r--r-- | src/mesa/main/errors.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/errors.h b/src/mesa/main/errors.h index ff6f5c69c08..a837dc8e1b0 100644 --- a/src/mesa/main/errors.h +++ b/src/mesa/main/errors.h @@ -117,6 +117,11 @@ _mesa_DebugMessageControl(GLenum source, GLenum type, GLenum severity, void GLAPIENTRY _mesa_DebugMessageCallback(GLDEBUGPROC callback, const void *userParam); +void GLAPIENTRY +_mesa_PushDebugGroup(GLenum source, GLuint id, GLsizei length, + const GLchar *message); +void GLAPIENTRY +_mesa_PopDebugGroup(void); #ifdef __cplusplus } |