Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-11-22 | Don't allow queries/etc of buffer object 0 - it's invisible to users. | Brian Paul | |
Misc clean-ups. | |||
2004-11-10 | GL_(UN)PACK_SKIP_IMAGES should only be applied to 3D texture pack/unpacking | Brian Paul | |
and ignored for 1D and 2D images. Need to pass in image dimensions (1,2,3) to the _mesa_image_address() function. This change gets propogated to some other routines. Also added new _mesa_image_address[123]d() convenience functions. | |||
2004-10-31 | Remove redundant error checking. | Brian Paul | |
Added _mesa_buffer_unmap(). Minor clean-ups. | |||
2004-09-27 | VBO RefCount fix (David Reveman) | Brian Paul | |
2004-09-14 | also fix possible delete bugs with buffer objects and vertex/fragment programs | Brian Paul | |
2004-09-09 | Update the doxygen configuration file. | Jose Fonseca | |
Minor updates/fixes to the source documentation. | |||
2004-08-25 | Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵ | Brian Paul | |
1015696) | |||
2004-03-13 | Implementation of GL_EXT_pixel_buffer_object extension. | Brian Paul | |
Note: extension may not be finalized yet - subject to change! Note: implementation not fully suitable for h/w implementation yet. | |||
2004-03-04 | yet another take on VBO deleting and reference counting | Brian Paul | |
2004-03-03 | more changes to VBO reference counting and deletion | Brian Paul | |
2004-02-13 | set buffer object default Usage and Access | Brian Paul | |
2004-02-11 | Do more bookkeeping of vertex buffer object reference counts. | Brian Paul | |
Incr/decr counts when doing glPush/PopClientAttrib(GL_CLIENT_VERTEX_ARRAY_BIT). | |||
2004-01-20 | Before calling _mesa_create_context(), initialize a dd_function_table struct | Brian Paul | |
by calling _mesa_init_driver_functions() and then plugging in the driver- specific functions. In particular, make sure ctx->Driver.NewTextureObject points to the appropriate driver function so that _all_ texture objects are augmented with the driver-specific data. Put in a bunch of assertions in the texture-related driver functions that texObj->DriverData is valid. Remove old dead code in near future. | |||
2003-10-21 | Added GLAPIENTRY decorations for all first level OpenGL API function entry | Kendall Bennett | |
points so that the calling conventions will work correctly with the assembler stubs with the Open Watcom compiler. | |||
2003-10-21 | fix an error message | Brian Paul | |
2003-10-19 | Move initialization of default ctx->Driver.buffer-object-functions into | Brian Paul | |
bufferobj.c so all the drivers don't have to worry about them. | |||
2003-10-15 | minor tweaks | Brian Paul | |
2003-10-14 | bufObj->Access wasn't being set | Brian Paul | |
2003-10-14 | minor fix in buffer_object_get_target() | Brian Paul | |
2003-09-19 | Assorted casts to silence g++ warnings. | Brian Paul | |
2003-09-18 | Add casts to prevent signed/unsigned compare compiler warnings. | Karl Schultz | |
2003-09-17 | Fixed/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-17 | unbind vertex arrays from buffer in DeleteBuffersARB() | Brian Paul | |
2003-09-17 | More 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-15 | Some work on ARB_vertex_buffer_object. | Brian Paul | |
Use GL_CLIENT_ACTIVE_TEXTURE when returning texcoord array values in get.c | |||
2003-09-09 | Added prototypes for internal functions to bufferobj.h. | Brian Paul | |
Minor code clean-ups. | |||
2003-09-09 | Added most of the infrastructure required to support | Ian Romanick | |
ARB_vertex_buffer_object. THIS IS INCOMPLETE. | |||
2003-07-17 | Merge Jose's documentation and core Mesa changes from embedded branch | Keith Whitwell | |
2003-05-10 | fix MapBufferARB() return type | Brian Paul | |
2003-04-09 | basic work on GL_ARB_vertex_buffer_object | Brian Paul | |
2003-03-29 | Basic infrastructure for GL_ARB_vertex_buffer_object. | Brian Paul | |