summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/glapitable.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-05-10 04:35:09 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-05-10 04:35:09 +0000
commitea31ca47200d96b7cc687989ee7f9953819fddbb (patch)
treef6ecd2c249a274e098346760b0a5fcc3b8d8132a /src/mesa/glapi/glapitable.h
parentbaa42c3364b58a7eaf08856c7d213d9ae0e3b021 (diff)
fix MapBufferARB() return type
Diffstat (limited to 'src/mesa/glapi/glapitable.h')
-rw-r--r--src/mesa/glapi/glapitable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h
index bd51c8aad2..2bb31e2e0d 100644
--- a/src/mesa/glapi/glapitable.h
+++ b/src/mesa/glapi/glapitable.h
@@ -703,7 +703,7 @@ struct _glapi_table
void (*GetBufferPointervARB)(GLenum target, GLenum pname, GLvoid ** params); /* 694 */
void (*GetBufferSubDataARB)(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data); /* 695 */
GLboolean (*IsBufferARB)(GLuint buffer); /* 696 */
- void (*MapBufferARB)(GLenum target, GLenum access); /* 697 */
+ void * (*MapBufferARB)(GLenum target, GLenum access); /* 697 */
GLboolean (*UnmapBufferARB)(GLenum target); /* 698 */
void (*DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 699 */
};