projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ff933b
)
added some missing const keywords in GetString
author
Brian Paul
<brian.paul@tungstengraphics.com>
Fri, 15 Sep 2000 19:57:51 +0000
(19:57 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Fri, 15 Sep 2000 19:57:51 +0000
(19:57 +0000)
src/mesa/main/get.c
patch
|
blob
|
history
diff --git
a/src/mesa/main/get.c
b/src/mesa/main/get.c
index 542d8061b2c457c99c4aec941d8539781be47c8d..69deced915360ce46c5d0a216fecb81d4e781de9 100644
(file)
--- a/
src/mesa/main/get.c
+++ b/
src/mesa/main/get.c
@@
-1,4
+1,4
@@
-/* $Id: get.c,v 1.3
2 2000/08/30 18:21:06
brianp Exp $ */
+/* $Id: get.c,v 1.3
3 2000/09/15 19:57:51
brianp Exp $ */
/*
* Mesa 3-D graphics library
@@
-4750,10
+4750,10
@@
_mesa_GetString( GLenum name )
case GL_VERSION:
return (const GLubyte *) version;
case GL_EXTENSIONS:
- return (GLubyte *) gl_extensions_get_string( ctx );
+ return (
const
GLubyte *) gl_extensions_get_string( ctx );
default:
gl_error( ctx, GL_INVALID_ENUM, "glGetString" );
- return (GLubyte *) 0;
+ return (
const
GLubyte *) 0;
}
}
}