projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ce1f37
)
silence more warnings (Karl Schultz)
author
Brian Paul
<brian.paul@tungstengraphics.com>
Fri, 14 Sep 2001 17:23:39 +0000
(17:23 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Fri, 14 Sep 2001 17:23:39 +0000
(17:23 +0000)
src/mesa/tnl/t_imm_api.c
patch
|
blob
|
history
diff --git
a/src/mesa/tnl/t_imm_api.c
b/src/mesa/tnl/t_imm_api.c
index 4063c8c3b2ba43c2d0fe62de5fef5f895903f27a..b5b87775b0c62654acb8e347b50a3352e2eefc03 100644
(file)
--- 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.1
6 2001/06/15 15:22:08
brianp Exp $ */
+/* $Id: t_imm_api.c,v 1.1
7 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 );
}