summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/getstring.c
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-09-05 22:21:36 -0700
committerIan Romanick <ian.d.romanick@intel.com>2013-11-07 16:41:38 -0800
commit114d360dfa4c293883538081298d620b26a45833 (patch)
treefadbbd519787e66cec4c966a63d8567cc8c1eabb /src/mesa/main/getstring.c
parent69b425efae189af6068b28d1da5a93d27c5315a7 (diff)
downloadexternal_mesa3d-114d360dfa4c293883538081298d620b26a45833.zip
external_mesa3d-114d360dfa4c293883538081298d620b26a45833.tar.gz
external_mesa3d-114d360dfa4c293883538081298d620b26a45833.tar.bz2
mesa: Remove gl_context::ResetStatus
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>
Diffstat (limited to 'src/mesa/main/getstring.c')
-rw-r--r--src/mesa/main/getstring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/getstring.c b/src/mesa/main/getstring.c
index 0e07542..23f1e09 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"