diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2003-09-17 03:40:11 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2003-09-17 03:40:11 +0000 |
commit | 148a2847a105ce9d9189ad3081091de60f803a33 (patch) | |
tree | 103a9c215249d036f6bd44ffb8db812ca903f3ad /src/mesa/main/bufferobj.h | |
parent | 4561f8418331f74cabf29649e9a4df7e92504a90 (diff) |
More work on ARB_vertex_buffer_object.
Use GLubyte * instead of void * for gl_client_array->Ptr to simplify upcoming
pointer arithmetic changes.
Diffstat (limited to 'src/mesa/main/bufferobj.h')
-rw-r--r-- | src/mesa/main/bufferobj.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/bufferobj.h b/src/mesa/main/bufferobj.h index ca5c99cac4..dddaa52714 100644 --- a/src/mesa/main/bufferobj.h +++ b/src/mesa/main/bufferobj.h @@ -29,11 +29,17 @@ #define BUFFEROBJ_H +#include "context.h" + + /* * Internal functions */ extern void +_mesa_init_buffer_objects( GLcontext *ctx ); + +extern void _mesa_initialize_buffer_object( struct gl_buffer_object *obj, GLuint name, GLenum target ); @@ -41,6 +47,9 @@ extern struct gl_buffer_object * _mesa_new_buffer_object( GLcontext *ctx, GLuint name, GLenum target ); extern void +_mesa_delete_buffer_object( GLcontext *ctx, struct gl_buffer_object *bufObj ); + +extern void _mesa_initialize_buffer_object( struct gl_buffer_object *obj, GLuint name, GLenum target ); |