mesa: Remove gl_context::ResetStatus
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 6 Sep 2012 05:21:36 +0000 (22:21 -0700)
committerIan Romanick <ian.d.romanick@intel.com>
Fri, 8 Nov 2013 00:41:38 +0000 (16:41 -0800)
This isn't going to be used in the actual implemenation of
glGetGraphicsResetStatus.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/main/context.c
src/mesa/main/getstring.c
src/mesa/main/mtypes.h

index 49dbb55b886523280069b940a2fadbf2323bef8f..913f409e4161116022fea9360fc6e49be8e878cd 100644 (file)
@@ -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;
index 0e075427fa048925070131b936cf23d261fc0eca..23f1e09506f89e1a279ed5dfcc4fecc2aa66efcd 100644 (file)
@@ -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"
index cca39f151c1f6dfe8589dcb2f0e51d0292a2affb..0e5bcc9e40f916a83aaa750fd1dfebe7eb9c2698 100644 (file)
@@ -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.
     */