diff options
author | keithw <keithw> | 2002-07-01 18:03:08 +0000 |
---|---|---|
committer | keithw <keithw> | 2002-07-01 18:03:08 +0000 |
commit | e961ffa114fb5de441049aa8823b47a0ba2d4a23 (patch) | |
tree | 0c7fdcd48e939986e6a21f412556b3041c8102a7 | |
parent | 82a133411ebcd49162279a43fa4e3c8802c2b2db (diff) |
Remove bogus shortcircuit test on last_ReallyEnabled
-rw-r--r-- | xc/lib/GL/mesa/src/drv/radeon/radeon_texstate.c | 5 |
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 ); - } } |