summaryrefslogtreecommitdiff
path: root/src/mesa/swrast/s_tritemp.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2004-12-03 15:39:58 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2004-12-03 15:39:58 +0000
commit404055216d22167365ac0522268a1f12e971d9e3 (patch)
tree3699d0b054fd7db19ecf8794fad18179bfb30695 /src/mesa/swrast/s_tritemp.h
parent2d846b712c44ebcf7bedce43bb58765c7493d89e (diff)
silence warning
Diffstat (limited to 'src/mesa/swrast/s_tritemp.h')
-rw-r--r--src/mesa/swrast/s_tritemp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h
index b05cfbb275..c09f1eddf0 100644
--- a/src/mesa/swrast/s_tritemp.h
+++ b/src/mesa/swrast/s_tritemp.h
@@ -785,7 +785,7 @@ static void NAME(GLcontext *ctx, const SWvertex *v0,
const GLfixed fx = FixedCeil(fsx); /* no fractional part */
const GLfixed adjx = (GLinterp) (fx - eLeft->fx0); /* SCALED! */
#endif
- const GLinterp adjy = eLeft->adjy; /* SCALED! */
+ const GLinterp adjy = (GLinterp) eLeft->adjy; /* SCALED! */
GLint idxOuter;
#if TRIANGLE_WALK_DOUBLE
GLdouble dxOuter;