aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo/vbo_save_api.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix an error in _save_OBE_DrawElementsXiang, Haihao2007-07-311-0/+3
| | | | | | In the case that a buffer object is bound to ELEMENT_ARRARY_BUFFER, it is invalid to directly dereference indices passed to glDrawElements.
* Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵Brian2007-07-041-9/+9
| | | | of -I flags.
* a variety of fixes for MingWzhang2007-06-281-0/+4
|
* Fix invalid enums passed to MapBufferAapo Tahkola2007-01-181-1/+1
|
* Merge branch 'master' of git+ssh://[email protected]/git/mesa/mesa ↵Keith Whitwell2007-01-161-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | into vbo-0.2 Conflicts: src/mesa/array_cache/sources src/mesa/drivers/dri/i965/brw_context.c src/mesa/drivers/dri/i965/brw_draw.c src/mesa/drivers/dri/i965/brw_fallback.c src/mesa/drivers/dri/i965/brw_vs_emit.c src/mesa/drivers/dri/i965/brw_vs_tnl.c src/mesa/drivers/dri/mach64/mach64_context.c src/mesa/main/extensions.c src/mesa/main/getstring.c src/mesa/tnl/sources src/mesa/tnl/t_save_api.c src/mesa/tnl/t_save_playback.c src/mesa/tnl/t_vtx_api.c src/mesa/tnl/t_vtx_exec.c src/mesa/vbo/vbo_attrib.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_api.c src/mesa/vbo/vbo_save_draw.c
* Remove debug, reenable inplace splitting.keithw2007-01-151-2/+0
|
* Remove special-case handling for index and edgeflagKeith Whitwell2007-01-151-32/+12
| | | | | This isn't required with the changes to core mesa and the new attribute layout.
* Don't perform dangling attribute check on POS attribute. It can't byKeith Whitwell2006-11-201-1/+1
| | | | | | definition dangle (every vertex has a position). However save->currentsz isn't properly maintained for this attribute, as there is no current position value to track. Based on patch from Haihao Xiang.
* Checkpoint of new vbo-building code. Currently builds regular arraysKeith Whitwell2006-10-291-0/+1160
rather than VBO's - VBOs are easy but need to look closer at the driver interface. The trivial/tri demo works.