diff options
author | nobled <[email protected]> | 2011-05-04 19:42:55 +0000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-03-10 21:42:06 +0100 |
commit | ae4a8a59b7045dafb99e903d11ebbd9c4ee161d6 (patch) | |
tree | f9e4e1d2697d1e74f087cf38252dce4946a069eb /src/mesa/main/errors.h | |
parent | 41308d969921d28a3159099420c145d2dcf10fe6 (diff) |
mesa: implement the last of GL_ARB_debug_output
Store client-defined message IDs in a hash table,
and sort them by severity into three linked lists
so they can be selected by severity level later.
Diffstat (limited to 'src/mesa/main/errors.h')
-rw-r--r-- | src/mesa/main/errors.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/errors.h b/src/mesa/main/errors.h index 6ab9b5eaeae..ed1c6fc7fb5 100644 --- a/src/mesa/main/errors.h +++ b/src/mesa/main/errors.h @@ -54,6 +54,9 @@ extern void _mesa_init_errors( struct gl_context *ctx ); extern void +_mesa_free_errors_data( struct gl_context *ctx ); + +extern void _mesa_warning( struct gl_context *gc, const char *fmtString, ... ) PRINTFLIKE(2, 3); extern void |