diff options
author | Brian Paul <[email protected]> | 2000-01-18 17:56:05 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-01-18 17:56:05 +0000 |
commit | e257733d0348933663ed264963d034a71f584622 (patch) | |
tree | e3e8f9a56db07f811d5f88c71bb4f3c9ba586f63 /src/mesa/drivers/glide/fxddtex.c | |
parent | d15422a951a9c42b7f8ac8b46548a5fe3945a21f (diff) |
updated with latest DRI tree changes
Diffstat (limited to 'src/mesa/drivers/glide/fxddtex.c')
-rw-r--r-- | src/mesa/drivers/glide/fxddtex.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/mesa/drivers/glide/fxddtex.c b/src/mesa/drivers/glide/fxddtex.c index 64fc1933578..747d2555c79 100644 --- a/src/mesa/drivers/glide/fxddtex.c +++ b/src/mesa/drivers/glide/fxddtex.c @@ -43,9 +43,6 @@ */ -/* fxddtex.c - 3Dfx VooDoo Texture mapping functions */ - - #ifdef HAVE_CONFIG_H #include "conf.h" #endif @@ -127,13 +124,8 @@ static tfxTexInfo *fxAllocTexObjData(fxMesaContext fxMesa) ti->sClamp=GR_TEXTURECLAMP_WRAP; ti->tClamp=GR_TEXTURECLAMP_WRAP; - if(fxMesa->haveTwoTMUs) { - ti->mmMode=GR_MIPMAP_NEAREST; - ti->LODblend=FXTRUE; - } else { - ti->mmMode=GR_MIPMAP_NEAREST_DITHER; - ti->LODblend=FXFALSE; - } + ti->mmMode=GR_MIPMAP_NEAREST; + ti->LODblend=FXFALSE; for(i=0;i<MAX_TEXTURE_LEVELS;i++) { ti->mipmapLevel[i].used=GL_FALSE; |