diff options
author | Brian Paul <[email protected]> | 2000-03-27 19:08:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-03-27 19:08:40 +0000 |
commit | ba3d9d0ce958dfc6161de41d9423a4b9547fb35c (patch) | |
tree | fd622001eb79e8cbde306767915024054fe7a251 /src/mesa/drivers/glide/fxtexman.c | |
parent | de5c19d139f010cf08c05af440ee3c7e5241cead (diff) |
removed tfxMipMapLevel's used and translate fields, initial teximage clean-up
Diffstat (limited to 'src/mesa/drivers/glide/fxtexman.c')
-rw-r--r-- | src/mesa/drivers/glide/fxtexman.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/drivers/glide/fxtexman.c b/src/mesa/drivers/glide/fxtexman.c index 87f309adc35..bc20fa10bce 100644 --- a/src/mesa/drivers/glide/fxtexman.c +++ b/src/mesa/drivers/glide/fxtexman.c @@ -651,12 +651,11 @@ void fxTMFreeTexture(fxMesaContext fxMesa, struct gl_texture_object *tObj) fxTMMoveOutTM(fxMesa, tObj); - for(i=0; i<MAX_TEXTURE_LEVELS; i++) { - if (ti->mipmapLevel[i].used && - ti->mipmapLevel[i].translated) + for (i=0; i<MAX_TEXTURE_LEVELS; i++) { + if (ti->mipmapLevel[i].data) { FREE(ti->mipmapLevel[i].data); - - (void)ti->mipmapLevel[i].data; + ti->mipmapLevel[i].data = NULL; + } } switch (ti->whichTMU) { case FX_TMU0: |