From: Corbin Simpson Date: Mon, 16 Jun 2008 00:30:07 +0000 (-0700) Subject: Oops, misordered a few instructions. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f7b8a13d65e97b8a9812f813cc670e6b712d583d;p=mesa.git Oops, misordered a few instructions. Not like it matters, though, since it's not taking effect yet. --- diff --git a/src/mesa/drivers/dri/r300/r300_tex.c b/src/mesa/drivers/dri/r300/r300_tex.c index 4a989fcde9c..317b9618987 100644 --- a/src/mesa/drivers/dri/r300/r300_tex.c +++ b/src/mesa/drivers/dri/r300/r300_tex.c @@ -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; }