Oops, misordered a few instructions.

Not like it matters, though, since it's not taking effect yet.
This commit is contained in:
Corbin Simpson 2008-06-15 17:30:07 -07:00
parent 6e6ca40f29
commit f7b8a13d65
1 changed files with 2 additions and 1 deletions

View File

@ -185,6 +185,7 @@ static GLuint aniso_filter(GLfloat anisotropy)
*/
static void r300SetTexFilter(r300TexObjPtr t, GLenum minf, GLenum magf, GLfloat anisotropy)
{
fprintf(stderr, "Here I am!\n");
t->filter &= ~(R300_TX_MIN_FILTER_MASK | R300_TX_MIN_FILTER_MIP_MASK | R300_TX_MAG_FILTER_MASK | R300_TX_MAX_ANISO_MASK);
t->filter_1 &= ~R300_EDGE_ANISO_EDGE_ONLY;
@ -1006,9 +1007,9 @@ static void r300TexEnv(GLcontext * ctx, GLenum target,
int unit = 1;
if (b != (rmesa->hw.tex.filter_1.cmd[R300_TEX_CMD_0 + unit] & R300_LOD_BIAS_MASK)) {
R300_STATECHANGE(rmesa, tex.filter_1);
rmesa->hw.tex.filter_1.cmd[R300_TEX_CMD_0 + unit] &= ~R300_LOD_BIAS_MASK;
rmesa->hw.tex.filter_1.cmd[R300_TEX_CMD_0 + unit] |= b;
R300_STATECHANGE(rmesa, tex.filter_1);
}
break;
}