diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2001-09-14 17:23:39 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2001-09-14 17:23:39 +0000 |
commit | 7cc49c2dc84ce17a9b4cc1a376da74515a724c92 (patch) | |
tree | 710abea0294a4769d25d3b11f9aa9c7f35bf96b7 /src/mesa/tnl | |
parent | 5ce1f374da35fb8f43874a790d27aab5b35a6969 (diff) |
silence more warnings (Karl Schultz)
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r-- | src/mesa/tnl/t_imm_api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_imm_api.c b/src/mesa/tnl/t_imm_api.c index 4063c8c3b2..b5b87775b0 100644 --- a/src/mesa/tnl/t_imm_api.c +++ b/src/mesa/tnl/t_imm_api.c @@ -1,4 +1,4 @@ -/* $Id: t_imm_api.c,v 1.16 2001/06/15 15:22:08 brianp Exp $ */ +/* $Id: t_imm_api.c,v 1.17 2001/09/14 17:23:39 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1025,7 +1025,7 @@ static void _tnl_EvalPoint1( GLint i ) { GET_IMMEDIATE; - EVALPOINT1( IM, i ); + EVALPOINT1( IM, (GLfloat) i ); } @@ -1033,7 +1033,7 @@ static void _tnl_EvalPoint2( GLint i, GLint j ) { GET_IMMEDIATE; - EVALPOINT2( IM, i, j ); + EVALPOINT2( IM, (GLfloat) i, (GLfloat) j ); } |