summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkeithw <keithw>2002-07-01 18:03:08 +0000
committerkeithw <keithw>2002-07-01 18:03:08 +0000
commite961ffa114fb5de441049aa8823b47a0ba2d4a23 (patch)
tree0c7fdcd48e939986e6a21f412556b3041c8102a7
parent82a133411ebcd49162279a43fa4e3c8802c2b2db (diff)
Remove bogus shortcircuit test on last_ReallyEnabled
-rw-r--r--xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c b/xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c
index b7230ec3f..fb78e2a1f 100644
--- a/xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c
+++ b/xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c
@@ -1364,9 +1364,6 @@ void radeonUpdateTextureState( GLcontext *ctx )
FALLBACK( rmesa, RADEON_FALLBACK_TEXTURE, !ok );
- if (rmesa->TclFallback &&
- ctx->Texture._ReallyEnabled != rmesa->last_ReallyEnabled) {
- rmesa->last_ReallyEnabled = ctx->Texture._ReallyEnabled;
+ if (rmesa->TclFallback)
radeonChooseVertexState( ctx );
- }
}