summaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl
Commit message (Collapse)AuthorAgeFilesLines
* tweak previous fog/fragment program fixBrian Paul2005-04-261-3/+5
|
* enable fog render input if fragment program fog option setBrian Paul2005-04-261-1/+1
|
* Ensure all VB->AttribPtr[] are populated. Reported by Aapo TahkolaKeith Whitwell2005-04-251-8/+18
|
* Fix the worst problems with dangling edgeflag references inKeith Whitwell2005-04-233-21/+30
| | | | | | display lists. These mainly arise from edgeflag being the only attribute no longer stored internally as a float and requiring various special case paths to accomodate it.
* Move the call to _tnl_UpdateFixedFunctionProgram to makeKeith Whitwell2005-04-222-1/+4
| | | | it easier for hardware drivers to test this out.
* Simplify the pipeline_stage structureKeith Whitwell2005-04-2222-835/+415
| | | | | | | | | | - remove input/output fields, input tracking removed. - remove state fields, the validate function now called on every statechange. - add an explicit 'create' function. Add in code to build vertex program to implement current t&l state. Still disabled, but turn on with a #define in t_vp_build.h.
* Facility to construct a vertex program which executes the currentKeith Whitwell2005-04-211-0/+1047
| | | | | | | fixed function t&l pipeline. Currently runs most of the Mesa demos OK, but still needs debugging & polishing.
* New software implementation of ARB_vertex_program. Similar in speedKeith Whitwell2005-04-211-0/+1551
| | | | to existing version, but with the potential for good improvements.
* Reverted the last change back to fix bug 3035Ben Crossman2005-04-151-1/+1
|
* A few getenv() that werent using the mesa wrapper versionBen Crossman2005-04-141-1/+1
|
* use COPY_CLEAN_4V macro to replace using both ASSIGN_4V & COPY_SZ_4VAlan Hourihane2005-03-024-12/+6
|
* Added a bunch of new comments, minor code clean-ups.Brian Paul2005-03-021-18/+45
|
* Using glColor3 commands to update materials could result in an undefinedBrian Paul2005-03-021-4/+6
| | | | alpha value. Fixed.
* additional parenthesis in TNL_CONTEXT macro (Nicolai Haehnle)Brian Paul2005-02-281-3/+3
|
* `static const' instead of `const static'Daniel Borca2005-02-141-1/+1
|
* mesa-tnl-0-to-NULL.patch from Jeff MuizelaarKeith Whitwell2005-02-1021-59/+59
|
* Catch no-op vertex buffers consisting only of vertices which willKeith Whitwell2005-02-101-12/+14
| | | | also appear in a future buffer.
* Determine ahead of time whether a display list will include verticesKeith Whitwell2005-01-224-13/+19
| | | | | | which have to be processed in the 'loopback' path. If so, send all vertices that way as the transition from playback->loopback has several problems.
* Fix calculation of last_count in _tnl_wrap_buffers()Keith Whitwell2005-01-181-1/+3
|
* make tnl_clipspace_attr->insert field const, to silence warningBrian Paul2005-01-161-1/+1
|
* free buffer in t_vertex_c.c on context deleteKeith Whitwell2005-01-123-0/+11
|
* Fix segfault in pipes by dealing with stride == 0 case in generic_interp_extrasKeith Whitwell2005-01-101-14/+25
|
* Added missing break; to fix infinite recursion between choose_emit_funcFelix Kuehling2005-01-081-0/+1
| | | | and emit_viewport4_bgra4_st2_st2.
* And fix the obvious bugs in higher-numbered templates.Keith Whitwell2005-01-071-8/+8
|
* Templatize the fastpaths.Keith Whitwell2005-01-071-254/+71
|
* Add some more hardcoded fastpaths.Keith Whitwell2005-01-071-15/+117
|
* Cope with the possibility that incoming vectors may haveKeith Whitwell2005-01-071-65/+24
| | | | | | | count < VB->Count. Remove code to deal with the (should-be) impossible situation of null input vectors.
* solved classic "char*" vs "char[]" conflict. we were mimicking a pointer ↵Daniel Borca2005-01-061-8/+8
| | | | variable at desired location and then we took its address. using array is more intuitive, as they give us the starting address instantly.
* Make the format of the fastpaths cleaner at the expense of a littleKeith Whitwell2005-01-051-90/+223
| | | | | | performance. Add fastpaths for some more common vertex formats.
* Give attributes with zero-stride a count of 1 to make it easierKeith Whitwell2005-01-055-25/+39
| | | | | | to avoid transforming the same attribute multiple times. Don't light a single normal multiple times in light_fast_rgba*
* Add a couple of hardwired fastpaths to t_vertex.c.Keith Whitwell2005-01-052-44/+135
|
* If there is only one normal, don't transform it multiple times.Keith Whitwell2005-01-051-0/+12
|
* re-disable TRACEBrian Paul2004-12-031-1/+1
|
* silence a variety of warnings found with g++ 3.4.2Brian Paul2004-12-031-1/+1
|
* Fix some warningsAlan Hourihane2004-12-021-5/+3
|
* Change the dispatch offsets for the VertexAttrib*NV functions so they don'tBrian Paul2004-11-273-3/+188
| | | | | | | alias with the corresponding ARB functions. GL_ARB_vertex_shader (and OpenGL 2.0's) VertexAttrib functions don't alias with conventional vertex attributes, as GL_NV_vertex_program does. So, the ARB and NV version of VertexAttrib need to be distinct.
* small aesthetic correctionDaniel Borca2004-11-011-1/+2
|
* Bug #1682: Mesa core code that gets linked into DRI drivers should never callAdam Jackson2004-10-242-6/+6
| | | | through the GL API directly, but should instead use the GL_CALL macro.
* Big-endian fixes for R200 sw TCL path.Ian Romanick2004-10-232-0/+57
|
* Add ARGB modes to support big-endian systems.Ian Romanick2004-10-172-0/+57
|
* Symbol names are prepended with an underscore on CYGWIN as well.Eric Anholt2004-09-171-3/+3
| | | | | X.Org Bugzilla: 1079 Submitted by: Alexander Gottwald <[email protected]>
* Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul2004-08-259-2/+74
| | | | 1015696)
* don't use __FUNCTION__ - not portableBrian Paul2004-08-221-7/+2
|
* Committing in .Jouk Jansen2004-08-191-2/+2
| | | | | | | | Missing .'s Modified Files: Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
* updates from JoukBrian Paul2004-08-182-6/+7
|
* Update Visual Studio Project file for src tree updates.Karl Schultz2004-08-141-2/+18
|
* Minor tweaks to deal with vsnprintf and __FUNCTION__ on WIN32Karl Schultz2004-08-141-1/+8
|
* added some handy debug code (disabled)Brian Paul2004-08-101-0/+25
|
* minor commentsBrian Paul2004-07-231-0/+2
|
* disable some debug printfsBrian Paul2004-07-021-2/+4
|