No need to call UpdateMaterial() from RunPipeline().
authorKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 14:18:18 +0000 (14:18 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Tue, 9 Dec 2003 14:18:18 +0000 (14:18 +0000)
src/mesa/drivers/dri/r200/r200_state.c

index 2a3df39be03fce9d0ca7dd6d7a3b144c902dc480..d07078c59efe4d44c2470f93c5ea43dd1a5ef51b 100644 (file)
@@ -2114,7 +2114,6 @@ static GLboolean check_material( GLcontext *ctx )
 static void r200WrapRunPipeline( GLcontext *ctx )
 {
    r200ContextPtr rmesa = R200_CONTEXT(ctx);
-   TNLcontext *tnl = TNL_CONTEXT(ctx);
    GLboolean has_material;
 
    if (0)
@@ -2137,7 +2136,6 @@ static void r200WrapRunPipeline( GLcontext *ctx )
 
    if (has_material) {
       TCL_FALLBACK( ctx, R200_TCL_FALLBACK_MATERIAL, GL_FALSE );
-      r200UpdateMaterial( ctx ); /* not needed any more? */
    }
 }