summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mesa/main/debug.c1
-rw-r--r--src/mesa/main/mtypes.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c
index c9bf7ce068..5848acaafe 100644
--- a/src/mesa/main/debug.c
+++ b/src/mesa/main/debug.c
@@ -229,7 +229,6 @@ _mesa_init_debug( GLcontext *ctx )
char *c;
/* For debug/development only */
- ctx->NoRaster = _mesa_getenv("MESA_NO_RASTER") ? GL_TRUE : GL_FALSE;
ctx->FirstTimeCurrent = GL_TRUE;
/* Dither disable */
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index fd82708b47..9e21d95384 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2214,15 +2214,12 @@ struct __GLcontextRec {
/** \name For debugging/development only */
/*@{*/
- GLboolean NoRaster;
GLboolean FirstTimeCurrent;
/*@}*/
/** Dither disable via MESA_NO_DITHER env var */
GLboolean NoDither;
- GLboolean Rendering;
-
#if defined(MESA_TRACE)
struct _glapi_table *TraceDispatch;
trace_context_t *TraceCtx;