diff options
author | Timothy Arceri <[email protected]> | 2014-03-08 15:35:54 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2014-03-08 15:38:31 +1100 |
commit | fb78fa58d2a60110bfd428ca8d41b746b69b6724 (patch) | |
tree | 5bf4700ba271ba5e19a17e5b4d126ff08a0764bf /src/mesa/main/errors.h | |
parent | 0608d346aa1930e40c7a1e7e676e5668519b5fea (diff) |
mesa: make ARB_debug_output functions an alias of
KHR_debug
Also update dispatch sanity removing ARB_debug_output checks and
removing KHR_debug placeholders as the checks have already been added
V2: Make sure we exit case statements with conditional breaks rather than
just dropping through.
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 | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/mesa/main/errors.h b/src/mesa/main/errors.h index cd414e6b68b..e0706e5b953 100644 --- a/src/mesa/main/errors.h +++ b/src/mesa/main/errors.h @@ -91,21 +91,6 @@ _mesa_shader_debug(struct gl_context *ctx, GLenum type, GLuint *id, const char *msg, int len); void GLAPIENTRY -_mesa_DebugMessageInsertARB(GLenum source, GLenum type, GLuint id, - GLenum severity, GLint length, - const GLcharARB* buf); -GLuint GLAPIENTRY -_mesa_GetDebugMessageLogARB(GLuint count, GLsizei logSize, GLenum* sources, - GLenum* types, GLenum* ids, GLenum* severities, - GLsizei* lengths, GLcharARB* messageLog); -void GLAPIENTRY -_mesa_DebugMessageControlARB(GLenum source, GLenum type, GLenum severity, - GLsizei count, const GLuint *ids, - GLboolean enabled); -void GLAPIENTRY -_mesa_DebugMessageCallbackARB(GLDEBUGPROCARB callback, - const void *userParam); -void GLAPIENTRY _mesa_DebugMessageInsert(GLenum source, GLenum type, GLuint id, GLenum severity, GLint length, const GLchar* buf); |