aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo/vbo_save.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: improved gl_buffer_object reference countingBrian Paul2008-09-041-5/+11
| | | | | Use new _mesa_reference_buffer_object() function wherever possible. Fixes buffer object/display list crash reported in ParaView.
* fix vbo display list memleak upon context destructionBrian2008-01-011-0/+15
|
* Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵Brian2007-07-041-4/+4
| | | | of -I flags.
* Move edgeflag into the VERT_ATTRIB_SEVEN slot. This means that ourKeith Whitwell2006-10-301-1/+8
| | | | | | | NV_vertex_program implementation has slightly incorrect aliasing behaviour. I think this is reasonable given the simplification and the fact that the mainstream ARB_vp continues to have the correct behaviour.
* Remove wakeup functions. This code is intended to be active all theKeith Whitwell2006-10-301-25/+13
| | | | time.
* Checkpoint of new vbo-building code. Currently builds regular arraysKeith Whitwell2006-10-291-0/+94
rather than VBO's - VBOs are easy but need to look closer at the driver interface. The trivial/tri demo works.