removed incorrect const qualifier
authorBrian Paul <brian.paul@tungstengraphics.com>
Tue, 13 Jun 2006 01:14:48 +0000 (01:14 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Tue, 13 Jun 2006 01:14:48 +0000 (01:14 +0000)
progs/tests/vao-01.c
progs/tests/vao-02.c

index c1849a0..c2d7088 100644 (file)
@@ -45,7 +45,7 @@
 
 typedef void (* PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array);
 typedef void (* PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays);
-typedef void (* PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays);
+typedef void (* PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays);
 typedef GLboolean (* PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array);
 
 #else
index 87d4531..993bc36 100644 (file)
@@ -45,7 +45,7 @@
 
 typedef void (* PFNGLBINDVERTEXARRAYAPPLEPROC) (GLuint array);
 typedef void (* PFNGLDELETEVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays);
-typedef void (* PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, const GLuint *arrays);
+typedef void (* PFNGLGENVERTEXARRAYSAPPLEPROC) (GLsizei n, GLuint *arrays);
 typedef GLboolean (* PFNGLISVERTEXARRAYAPPLEPROC) (GLuint array);
 
 #else