diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-04-28 14:42:33 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-04-28 14:42:33 +0000 |
commit | c6506004d4924740b3b6265a688a9c103106af94 (patch) | |
tree | 085f224b1367057c08f17512dca5deb9ca8219d6 | |
parent | 3e50d140f505cc579267de6534d2a9ad68a5efcf (diff) |
fix glIsBufferARB() prototype
-rw-r--r-- | include/GL/glext.h | 2 |
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); |