From: nobled Date: Mon, 2 May 2011 17:52:28 +0000 (+0000) Subject: mesa: add yet more context fields for GL_ARB_debug_output X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4667cb2162d02f5b0fe620a5394aee92c725fb86;p=mesa.git mesa: add yet more context fields for GL_ARB_debug_output --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 53544429e37..35dc30bd2d7 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3221,6 +3221,13 @@ typedef enum { OTHER_ERROR_COUNT } gl_other_error; +struct gl_client_debug +{ + GLboolean Defaults[3][2][6]; /* severity, source, type */ + /* TODO: Add an object here that can track the state of an arbitrary + number of client-provided IDs. */ +}; + struct gl_debug_state { GLDEBUGPROCARB Callback; @@ -3230,8 +3237,7 @@ struct gl_debug_state GLboolean WinsysErrors[WINSYS_ERROR_COUNT]; GLboolean ShaderErrors[SHADER_ERROR_COUNT]; GLboolean OtherErrors[OTHER_ERROR_COUNT]; - /* TODO: Add an object here that tracks the state of client-provided IDs - in the APPLICATION and THIRD_PARTY namespaces. */ + struct gl_client_debug ClientIDs; struct gl_debug_msg Log[MAX_DEBUG_LOGGED_MESSAGES]; GLint NumMessages; GLint NextMsg;