aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/vbo/vbo_save_loopback.c
Commit message (Collapse)AuthorAgeFilesLines
* mesa: use new _mesa_inside_begin_end() functionBrian Paul2013-04-231-1/+1
| | | | | Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
* mesa: remove #include "mfeatures.h" from numerous source filesBrian Paul2013-04-171-1/+0
| | | | | | None of the remaining FEATURE_x symbols in mfeatures.h are used anymore. Reviewed-by: Jordan Justen <[email protected]>
* mesa: remove FEATURE_dlist define.Oliver McFadden2012-09-151-6/+0
| | | | | Signed-off-by: Oliver McFadden <[email protected]> Reviewed-by: Brian Paul <[email protected]>
* vbo: Include mfeatures.h in files that perform feature tests.Vinson Lee2011-01-091-0/+1
|
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-8/+8
|
* mesa/es: Remove omit list.Chia-I Wu2010-05-121-0/+5
| | | | | vbo/vbo_save* are the last members on the omit list. Test FEATURE_dlist in the sources and remove the omit list.
* Grammar and spelling fixesJeff Smith2010-03-121-1/+1
| | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]>
* mesa: Move src/mesa/glapi/dispatch.h to mesa.Chia-I Wu2010-02-251-1/+1
| | | | | | glapi/dispatch.h is a core Mesa header file. Move the header file to main/ to make this clear. It also becomes clear after this change that IN_DRI_DRIVER is only used in core Mesa to enable the remap table.
* Replace the _mesa_*printf() wrappers with the plain libc versionsKristian Høgsberg2010-02-191-6/+6
|
* vbo: Remove unnecessary header from vbo_save_loopback.c.Vinson Lee2010-01-111-1/+0
|
* mesa/vbo: use _lookup_prim_by_nr for debuggingKeith Whitwell2009-06-301-1/+1
| | | | Switch over to specialized enum lookup for primitives
* remove unnecessary swrast, tnl includesBrian Paul2008-06-101-3/+0
|
* Be more consistant with paths in #includes. Eventually, eliminate a bunch ↵Brian2007-07-041-8/+8
| | | | of -I flags.
* Remove debug, reenable inplace splitting.keithw2007-01-151-1/+2
|
* Remove special-case handling for index and edgeflagKeith Whitwell2007-01-151-141/+7
| | | | | This isn't required with the changes to core mesa and the new attribute layout.
* Checkpoint of new vbo-building code. Currently builds regular arraysKeith Whitwell2006-10-291-0/+327
rather than VBO's - VBOs are easy but need to look closer at the driver interface. The trivial/tri demo works.