diff options
author | Ian Romanick <[email protected]> | 2012-09-05 22:21:36 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2013-11-07 16:41:38 -0800 |
commit | 114d360dfa4c293883538081298d620b26a45833 (patch) | |
tree | fadbbd519787e66cec4c966a63d8567cc8c1eabb /src/mesa/main/context.c | |
parent | 69b425efae189af6068b28d1da5a93d27c5315a7 (diff) |
mesa: Remove gl_context::ResetStatus
This isn't going to be used in the actual implemenation of
glGetGraphicsResetStatus.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |