Index: r200_tex.c =================================================================== RCS file: /cvs/mesa/Mesa/src/mesa/drivers/dri/r200/r200_tex.c,v retrieving revision 1.19 diff -u -r1.19 r200_tex.c --- r200_tex.c 25 Aug 2004 17:36:34 -0000 1.19 +++ r200_tex.c 6 Oct 2004 23:45:05 -0000 @@ -182,6 +182,9 @@ { t->pp_txfilter &= ~R200_MAX_ANISO_MASK; + t->pp_txfilter |= R200_MAX_ANISO_1_TO_1; + return; + if ( max == 1.0 ) { t->pp_txfilter |= R200_MAX_ANISO_1_TO_1; } else if ( max <= 2.0 ) { @@ -209,6 +212,10 @@ t->pp_txfilter &= ~(R200_MIN_FILTER_MASK | R200_MAG_FILTER_MASK); t->pp_txformat_x &= ~R200_VOLUME_FILTER_MASK; + + t->pp_txfilter |= R200_MIN_FILTER_LINEAR | R200_MAG_FILTER_LINEAR; + t->pp_txformat_x |= R200_VOLUME_FILTER_LINEAR; + return; if ( anisotropy == R200_MAX_ANISO_1_TO_1 ) { switch ( minf ) {