diff options
author | Karl Schultz <[email protected]> | 2001-12-13 19:55:00 +0000 |
---|---|---|
committer | Karl Schultz <[email protected]> | 2001-12-13 19:55:00 +0000 |
commit | 51416073573de88b7d30996cfc118a7f9bc766ad (patch) | |
tree | 808d98806cabf08f8e5279c4b7a21f0cad586c0d /src | |
parent | a9e14e7bb922ec890feb1552dd4888ccc02f1cd5 (diff) |
Remove const from save_TexParameteri to match prototype for glTexParameteri.
Allows compilation on IRIX.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/dlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index fe5241587df..30e6118049c 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.76 2001/09/18 16:16:21 kschultz Exp $ */ +/* $Id: dlist.c,v 1.76.2.1 2001/12/13 19:55:00 kschultz Exp $ */ /* * Mesa 3-D graphics library @@ -3130,7 +3130,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; |