summaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell2004-07-0112-72/+75
|
* 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-305-17/+865
| | | | for this which spits out C code for the generated functions.
* Convert all calls using _glapi_Dispatch to use the new GL_CALL macro.Ian Romanick2004-05-272-17/+17
|
* doc update; minor changesDaniel Borca2004-05-201-9/+13
|
* Add EXT_vertex_cull support to mesaKeith Whitwell2004-05-105-4/+122
|
* Fix minor warnings found with g++.Brian Paul2004-05-042-3/+3
|
* bring over build fixes from stable branchAlan Hourihane2004-04-262-22/+27
|
* Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragmentBrian Paul2004-04-2313-42/+44
| | | | | | | program is enabled AND the currently bound program is valid. Check _Enable instead of Enable to prevent things from blowing up when someone calls glEnable(GL_VERTEX_PROGRAM_ARB) without actually defining a program.
* Fix order of EMIT_4UB_4F declarationsKeith Whitwell2004-04-221-2/+4
|
* Fix up some assorted issues with initialization of vertex program registers.Brian Paul2004-04-211-5/+8
| | | | | Some need to be set per-vertex, other per-primitive. Cleared that up. Only need to init temp/result registers if executing an NV vertex program.
* Simplify last fix slightly, apply to vtx paths as well.Keith Whitwell2004-04-202-8/+10
|
* When upgrading copied vertices, distinguish between an attributeKeith Whitwell2004-04-201-5/+14
| | | | | entering a vertex for the first time and one which was already present but increasing its size. Fixes Brian's normal.c bug.
* Make sure ctx->Driver.NeedFlush is set for Eval-generated attributes.Keith Whitwell2004-04-161-12/+12
|
* updated Glide driver documentationDaniel Borca2004-04-134-283/+464
| | | | | | | fixed SAL/SAR in assyntax.h (NASM) fixed a bug wrt NULL pointer assignment in t_vtx_api.c cosmetics to t_vtx_x86.c & t_vtx_x86_gcc.S enabled STDCALL with codegen (MinGW)
* Missed one with the last commit.Ian Romanick2004-04-121-0/+2
|
* Conditionally compile code for x86 specific TNL codegen. This fixes problemIan Romanick2004-04-121-0/+6
| | | | | | with x86-64 and PowerPC. Reported by: sublett on #dri-devel.