diff options
author | Corbin Simpson <[email protected]> | 2008-06-16 01:02:16 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2008-06-16 01:02:16 -0700 |
commit | 1738a9a535cbde3a4b9f1b57f2a47139b4affdb9 (patch) | |
tree | 3e9e002b61356a272193ee9e20c437ce6fd3bb20 /src/mesa | |
parent | 776580a6afff9c6403140737ea50f36e9323528a (diff) |
r300: Forgot to clear old state before writing new state.
Oooops. Hehe.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_tex.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_tex.c b/src/mesa/drivers/dri/r300/r300_tex.c index 85a6628e40c..b672baca1b6 100644 --- a/src/mesa/drivers/dri/r300/r300_tex.c +++ b/src/mesa/drivers/dri/r300/r300_tex.c @@ -252,6 +252,7 @@ static void r300SetTexLodBias(r300TexObjPtr t, GLfloat bias) b <<= 3; b &= R300_LOD_BIAS_MASK; + t->filter_1 &= ~R300_LOD_BIAS_MASK; t->filter_1 |= b; } |