removed unused NoRaster and Rendering fields from GLcontext
authorBrian Paul <brian.paul@tungstengraphics.com>
Thu, 18 Sep 2003 16:33:10 +0000 (16:33 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Thu, 18 Sep 2003 16:33:10 +0000 (16:33 +0000)
src/mesa/main/debug.c
src/mesa/main/mtypes.h

index c9bf7ce..5848aca 100644 (file)
@@ -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 */
index fd82708..9e21d95 100644 (file)
@@ -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;