summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
AgeCommit message (Collapse)Author
2005-03-02Added a bunch of new comments, minor code clean-ups.Brian Paul
2005-03-02Using glColor3 commands to update materials could result in an undefinedBrian Paul
alpha value. Fixed.
2005-02-28additional parenthesis in TNL_CONTEXT macro (Nicolai Haehnle)Brian Paul
2005-02-14`static const' instead of `const static'Daniel Borca
2005-02-10mesa-tnl-0-to-NULL.patch from Jeff MuizelaarKeith Whitwell
2005-02-10Catch no-op vertex buffers consisting only of vertices which willKeith Whitwell
also appear in a future buffer.
2005-01-22Determine ahead of time whether a display list will include verticesKeith Whitwell
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.
2005-01-18Fix calculation of last_count in _tnl_wrap_buffers()Keith Whitwell
2005-01-16make tnl_clipspace_attr->insert field const, to silence warningBrian Paul
2005-01-12free buffer in t_vertex_c.c on context deleteKeith Whitwell
2005-01-10Fix segfault in pipes by dealing with stride == 0 case in generic_interp_extrasKeith Whitwell
2005-01-08Added missing break; to fix infinite recursion between choose_emit_funcFelix Kuehling
and emit_viewport4_bgra4_st2_st2.
2005-01-07And fix the obvious bugs in higher-numbered templates.Keith Whitwell
2005-01-07Templatize the fastpaths.Keith Whitwell
2005-01-07Add some more hardcoded fastpaths.Keith Whitwell
2005-01-07Cope with the possibility that incoming vectors may haveKeith Whitwell
count < VB->Count. Remove code to deal with the (should-be) impossible situation of null input vectors.
2005-01-06solved classic "char*" vs "char[]" conflict. we were mimicking a pointer ↵Daniel Borca
variable at desired location and then we took its address. using array is more intuitive, as they give us the starting address instantly.
2005-01-05Make the format of the fastpaths cleaner at the expense of a littleKeith Whitwell
performance. Add fastpaths for some more common vertex formats.
2005-01-05Give attributes with zero-stride a count of 1 to make it easierKeith Whitwell
to avoid transforming the same attribute multiple times. Don't light a single normal multiple times in light_fast_rgba*
2005-01-05Add a couple of hardwired fastpaths to t_vertex.c.Keith Whitwell
2005-01-05If there is only one normal, don't transform it multiple times.Keith Whitwell
2004-12-03re-disable TRACEBrian Paul
2004-12-03silence a variety of warnings found with g++ 3.4.2Brian Paul
2004-12-02Fix some warningsAlan Hourihane
2004-11-27Change the dispatch offsets for the VertexAttrib*NV functions so they don'tBrian Paul
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.
2004-11-01small aesthetic correctionDaniel Borca
2004-10-24Bug #1682: Mesa core code that gets linked into DRI drivers should never callAdam Jackson
through the GL API directly, but should instead use the GL_CALL macro.
2004-10-23Big-endian fixes for R200 sw TCL path.Ian Romanick
2004-10-17Add ARGB modes to support big-endian systems.Ian Romanick
2004-09-17Symbol names are prepended with an underscore on CYGWIN as well.Eric Anholt
X.Org Bugzilla: 1079 Submitted by: Alexander Gottwald <ago@freedesktop.org>
2004-08-25Silence gcc 3.4 warnings on ReactOS. Mostly unused var warnings. (patch ↵Brian Paul
1015696)
2004-08-22don't use __FUNCTION__ - not portableBrian Paul
2004-08-19 Committing in .Jouk Jansen
Missing .'s Modified Files: Mesa/src/mesa/main/descrip.mms Mesa/src/mesa/tnl/descrip.mms ----------------------------------------------------------------------
2004-08-18updates from JoukBrian Paul
2004-08-14Update Visual Studio Project file for src tree updates.Karl Schultz
2004-08-14Minor tweaks to deal with vsnprintf and __FUNCTION__ on WIN32Karl Schultz
2004-08-10added some handy debug code (disabled)Brian Paul
2004-07-23minor commentsBrian Paul
2004-07-02disable some debug printfsBrian Paul
2004-07-01Rename the various function types in t_context.h to include a tnl_ prefix.Keith Whitwell
2004-07-01Add t_context.h include for drivers.Keith Whitwell
2004-06-30Add infrastructure for t_vertex.c codegen. Add an example driverKeith Whitwell
for this which spits out C code for the generated functions.
2004-05-27Convert all calls using _glapi_Dispatch to use the new GL_CALL macro.Ian Romanick
2004-05-20doc update; minor changesDaniel Borca
2004-05-10Add EXT_vertex_cull support to mesaKeith Whitwell
2004-05-04Fix minor warnings found with g++.Brian Paul
2004-04-26bring over build fixes from stable branchAlan Hourihane
2004-04-23Added ctx->Vertex/FragmentProgram._Enable flags. Set when vertex/fragmentBrian Paul
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.
2004-04-22Fix order of EMIT_4UB_4F declarationsKeith Whitwell
2004-04-21Fix up some assorted issues with initialization of vertex program registers.Brian Paul
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.