diff options
author | Brian Paul <[email protected]> | 2003-09-18 16:33:10 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-18 16:33:10 +0000 |
commit | bd3096edc30530a2b77770b773d725081c4d804f (patch) | |
tree | 11b7da5f6f6bf1af55427eebc721466d6ba4c010 /src | |
parent | 99823b37443044fd0d96e75d52c747f0c77d1730 (diff) |
removed unused NoRaster and Rendering fields from GLcontext
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/debug.c | 1 | ||||
-rw-r--r-- | src/mesa/main/mtypes.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/main/debug.c b/src/mesa/main/debug.c index c9bf7ce0682..5848acaafe0 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 fd82708b47d..9e21d953849 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; |