projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d313068
)
Remove const from save_TexParameteri to match prototype for glTexParameteri.
author
Karl Schultz
<kschultz@freedesktop.org>
Thu, 13 Dec 2001 19:58:20 +0000
(19:58 +0000)
committer
Karl Schultz
<kschultz@freedesktop.org>
Thu, 13 Dec 2001 19:58:20 +0000
(19:58 +0000)
Allows compilation on IRIX.
src/mesa/main/dlist.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/dlist.c
b/src/mesa/main/dlist.c
index 768d3ac707dbd4423cb39984e7d3384f894d03f9..050373aee74d5c1ab9b15d5132e400b2e832fb37 100644
(file)
--- a/
src/mesa/main/dlist.c
+++ b/
src/mesa/main/dlist.c
@@
-1,4
+1,4
@@
-/* $Id: dlist.c,v 1.
79 2001/12/04 23:43:31 brianp
Exp $ */
+/* $Id: dlist.c,v 1.
80 2001/12/13 19:58:20 kschultz
Exp $ */
/*
* Mesa 3-D graphics library
@@
-3134,7
+3134,7
@@
static void save_TexParameterf( GLenum target, GLenum pname, GLfloat param )
}
-static void save_TexParameteri( GLenum target, GLenum pname,
const
GLint param )
+static void save_TexParameteri( GLenum target, GLenum pname, GLint param )
{
GLfloat fparam[4];
fparam[0] = (GLfloat) param;