diff options
author | Brian Paul <[email protected]> | 2003-09-17 03:40:11 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-17 03:40:11 +0000 |
commit | 148a2847a105ce9d9189ad3081091de60f803a33 (patch) | |
tree | 103a9c215249d036f6bd44ffb8db812ca903f3ad /src/mesa/main/context.c | |
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/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index dea778c39a9..ee299cd3113 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -77,6 +77,7 @@ #include "attrib.h" #include "blend.h" #include "buffers.h" +#include "bufferobj.h" #include "colortab.h" #include "context.h" #include "debug.h" @@ -1092,6 +1093,7 @@ init_attrib_groups( GLcontext *ctx ) _mesa_init_accum( ctx ); _mesa_init_attrib( ctx ); _mesa_init_buffers( ctx ); + _mesa_init_buffer_objects( ctx ); _mesa_init_color( ctx ); _mesa_init_colortables( ctx ); _mesa_init_current( ctx ); |