aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl/t_vertex.h
Commit message (Collapse)AuthorAgeFilesLines
* s/Tungsten Graphics/VMware/José Fonseca2014-01-171-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the old copyright name is creating unnecessary confusion, hence this change. This was the sed script I used: $ cat tg2vmw.sed # Run as: # # git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed # # Rename copyrights s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g /Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./ s/TUNGSTEN GRAPHICS/VMWARE/g # Rename emails s/[email protected]/[email protected]/ s/[email protected]/[email protected]/g s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/ s/jrfonseca\[email protected]/[email protected]/g s/keithw\[email protected]/[email protected]/g s/[email protected]/[email protected]/g s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/ s/[email protected]/[email protected]/ # Remove dead links s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g # C string src/gallium/state_trackers/vega/api_misc.c s/"Tungsten Graphics, Inc"/"VMware, Inc"/ Reviewed-by: Brian Paul <[email protected]>
* tnl: Clean up header file inclusion in t_vertex.h.Vinson Lee2010-12-301-1/+4
|
* Drop GLcontext typedef and use struct gl_context insteadKristian Høgsberg2010-10-131-21/+21
|
* Add a comment about _tnl_emit_indexed_vertices_to_buffer.Thomas Hellstrom2009-01-201-0/+6
|
* tnl: Add a utility to emit indexed vertices to a DMA buffer.Thomas Hellstrom2009-01-201-0/+6
| | | | | | This utility is useful for hardware that doesn't support HW index buffers. It's a bit inefficient but appears to give a substantial performance gain, as we can emit tri strips that would otherwise be split into triangles.
* mesa: prefix a bunch of #include lines with "main/".Brian Paul2008-09-181-1/+1
| | | | | This is another step toward removing a whole bunch of -I flags from the cc commands. Still need to address driver code...
* Remove old t_vertex.c codegen infrastructure, tie in new code.Keith Whitwell2005-05-181-22/+40
| | | | Currently disabled, can enable with MESA_EXPERIMENTAL=t.
* free buffer in t_vertex_c.c on context deleteKeith Whitwell2005-01-121-0/+1
|
* Big-endian fixes for R200 sw TCL path.Ian Romanick2004-10-231-0/+1
|
* Add ARGB modes to support big-endian systems.Ian Romanick2004-10-171-0/+1
|
* Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell2004-07-011-1/+1
|
* Add t_context.h include for drivers.Keith Whitwell2004-07-011-0/+1
|
* Add infrastructure for t_vertex.c codegen. Add an example driverKeith Whitwell2004-06-301-0/+19
| | | | for this which spits out C code for the generated functions.
* Fix order of EMIT_4UB_4F declarationsKeith Whitwell2004-04-221-2/+4
|
* Add _tnl_set_attr() to complement existing get_attr() call.Keith Whitwell2004-02-161-0/+6
|
* Another mechanism to create vertices with holes - a new EMIT_PAD styleKeith Whitwell2004-01-211-0/+1
|
* some more count vs. end confusionKeith Whitwell2004-01-191-2/+2
|
* Beef up t_vertex.c:Keith Whitwell2004-01-051-4/+4
| | | | | | | | | | | - cope with input vectors with size less than that of the emitted attribute. - cope with vertices with 'holes' inside and between vertices. Fix calculation of tnl->render_inputs to work with fp programs. Mirror VB->PointSizePtr in VB->AttribPtr so that it can work with t_vertex.c. Transition swrast_setup/ to use t_vertex.c to build swrast vertices.
* Re-commit t_vertex.[ch] changes to fd.o server.Keith Whitwell2004-01-051-18/+45
|
* new filesKeith Whitwell2003-12-211-0/+92