diff options
author | Brian Paul <[email protected]> | 2004-12-03 15:39:58 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-12-03 15:39:58 +0000 |
commit | 404055216d22167365ac0522268a1f12e971d9e3 (patch) | |
tree | 3699d0b054fd7db19ecf8794fad18179bfb30695 /src/mesa/swrast/s_tritemp.h | |
parent | 2d846b712c44ebcf7bedce43bb58765c7493d89e (diff) |
silence warning
Diffstat (limited to 'src/mesa/swrast/s_tritemp.h')
-rw-r--r-- | src/mesa/swrast/s_tritemp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index b05cfbb275f..c09f1eddf0d 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; |