diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-05-10 04:35:09 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-05-10 04:35:09 +0000 |
commit | ea31ca47200d96b7cc687989ee7f9953819fddbb (patch) | |
tree | f6ecd2c249a274e098346760b0a5fcc3b8d8132a /src/mesa/main/bufferobj.h | |
parent | baa42c3364b58a7eaf08856c7d213d9ae0e3b021 (diff) |
fix MapBufferARB() return type
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r-- | src/mesa/main/bufferobj.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index 2617eb0c3e..3f4cd20621 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -1,4 +1,4 @@ -/* $Id: bufferobj.h,v 1.1 2003/03/29 17:01:00 brianp Exp $ */ +/* $Id: bufferobj.h,v 1.2 2003/05/10 04:35:09 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -51,7 +51,7 @@ _mesa_BufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, co extern void _mesa_GetBufferSubDataARB(GLenum target, GLintptrARB offset, GLsizeiptrARB size, void * data); -extern void +extern void * _mesa_MapBufferARB(GLenum target, GLenum access); GLboolean |