summaryrefslogtreecommitdiff
path: root/include/GL/glext.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-04-28 14:42:33 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-04-28 14:42:33 +0000
commitc6506004d4924740b3b6265a688a9c103106af94 (patch)
tree085f224b1367057c08f17512dca5deb9ca8219d6 /include/GL/glext.h
parent3e50d140f505cc579267de6534d2a9ad68a5efcf (diff)
fix glIsBufferARB() prototype
Diffstat (limited to 'include/GL/glext.h')
-rw-r--r--include/GL/glext.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/glext.h b/include/GL/glext.h
index 2cef3ce2f5..82d06a0f1e 100644
--- a/include/GL/glext.h
+++ b/include/GL/glext.h
@@ -5067,7 +5067,7 @@ typedef long int GLintptrARB;
GLAPI void APIENTRY glBindBufferARB(GLenum target, GLuint buffer);
GLAPI void APIENTRY glDeleteBuffersARB(GLsizei n, const GLuint * buffer);
GLAPI void APIENTRY glGenBuffersARB(GLsizei n, GLuint * buffer);
-extern GLboolean glIsBufferARB(GLuint buffer);
+GLAPI GLboolean APIENTRY glIsBufferARB(GLuint buffer);
GLAPI void APIENTRY glBufferDataARB(GLenum target, GLsizeiptrARB size, const GLvoid * data, GLenum usage);
GLAPI void APIENTRY glBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, const GLvoid * data);
GLAPI void APIENTRY glGetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data);