diff options
author | Brian Paul <[email protected]> | 2000-05-04 16:15:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-05-04 16:15:33 +0000 |
commit | 9f0289dfac0c28feee4901eb72903fa4108624d1 (patch) | |
tree | 88b785c5f28d81c516e56a87beb31cef2ca78c22 /src/mesa/drivers/glide/fxddtex.c | |
parent | a14d28c2bd0e41e9153dc1ae13bdb2451191aafc (diff) |
EnvMode GL_BLEND and tex invalidate changes from Daryll
Diffstat (limited to 'src/mesa/drivers/glide/fxddtex.c')
-rw-r--r-- | src/mesa/drivers/glide/fxddtex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c index 01a67c49ea3..55e0be6bf70 100644 --- a/src/mesa/drivers/glide/fxddtex.c +++ b/src/mesa/drivers/glide/fxddtex.c @@ -95,9 +95,9 @@ static void fxTexInvalidate(GLcontext *ctx, struct gl_texture_object *tObj) fxMesaContext fxMesa=(fxMesaContext)ctx->DriverCtx; tfxTexInfo *ti; - fxTMMoveOutTM(fxMesa,tObj); /* TO DO: SLOW but easy to write */ - ti=fxTMGetTexInfo(tObj); + if (ti->isInTM) fxTMMoveOutTM(fxMesa,tObj); /* TO DO: SLOW but easy to write */ + ti->validated=GL_FALSE; fxMesa->new_state|=FX_NEW_TEXTURING; ctx->Driver.RenderStart = fxSetupFXUnits; |