summaryrefslogtreecommitdiff
path: root/src/mesa/main/bufferobj.c
AgeCommit message (Collapse)Author
2003-10-21Added GLAPIENTRY decorations for all first level OpenGL API function entryKendall Bennett
points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler.
2003-10-21fix an error messageBrian Paul
2003-10-19Move initialization of default ctx->Driver.buffer-object-functions intoBrian Paul
bufferobj.c so all the drivers don't have to worry about them.
2003-10-15minor tweaksBrian Paul
2003-10-14bufObj->Access wasn't being setBrian Paul
2003-10-14minor fix in buffer_object_get_target()Brian Paul
2003-09-19Assorted casts to silence g++ warnings.Brian Paul
2003-09-18Add casts to prevent signed/unsigned compare compiler warnings.Karl Schultz
2003-09-17Fixed/added some error checks.Brian Paul
Allow one buffer to be bound to multiple targets. Rebind buffer 0 when deleting currently bound buffer.
2003-09-17unbind vertex arrays from buffer in DeleteBuffersARB()Brian Paul
2003-09-17More work on ARB_vertex_buffer_object.Brian Paul
Use GLubyte * instead of void * for gl_client_array->Ptr to simplify upcoming pointer arithmetic changes.
2003-09-15Some work on ARB_vertex_buffer_object.Brian Paul
Use GL_CLIENT_ACTIVE_TEXTURE when returning texcoord array values in get.c
2003-09-09Added prototypes for internal functions to bufferobj.h.Brian Paul
Minor code clean-ups.
2003-09-09Added most of the infrastructure required to supportIan Romanick
ARB_vertex_buffer_object. THIS IS INCOMPLETE.
2003-07-17Merge Jose's documentation and core Mesa changes from embedded branchKeith Whitwell
2003-05-10fix MapBufferARB() return typeBrian Paul
2003-04-09basic work on GL_ARB_vertex_buffer_objectBrian Paul
2003-03-29Basic infrastructure for GL_ARB_vertex_buffer_object.Brian Paul