From: Ian Romanick Date: Thu, 6 Sep 2012 05:21:36 +0000 (-0700) Subject: mesa: Remove gl_context::ResetStatus X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=114d360dfa4c293883538081298d620b26a45833;p=mesa.git mesa: Remove gl_context::ResetStatus This isn't going to be used in the actual implemenation of glGetGraphicsResetStatus. Signed-off-by: Ian Romanick Reviewed-by: Brian Paul --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 49dbb55b886..913f409e416 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -808,7 +808,6 @@ init_attrib_groups(struct gl_context *ctx) ctx->NewState = _NEW_ALL; ctx->NewDriverState = ~0; ctx->ErrorValue = GL_NO_ERROR; - ctx->ResetStatus = GL_NO_ERROR; ctx->varying_vp_inputs = VERT_BIT_ALL; return GL_TRUE; diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c index 0e075427fa0..23f1e09506f 100644 --- a/src/mesa/main/getstring.c +++ b/src/mesa/main/getstring.c @@ -305,7 +305,7 @@ GLenum GLAPIENTRY _mesa_GetGraphicsResetStatusARB( void ) { GET_CURRENT_CONTEXT(ctx); - GLenum status = ctx->ResetStatus; + GLenum status = GL_NO_ERROR; if (MESA_VERBOSE & VERBOSE_API) _mesa_debug(ctx, "glGetGraphicsResetStatusARB" diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index cca39f151c1..0e5bcc9e40f 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -3903,9 +3903,6 @@ struct gl_context GLenum ErrorValue; /**< Last error code */ - /* GL_ARB_robustness */ - GLenum ResetStatus; - /** * Recognize and silence repeated error debug messages in buggy apps. */