aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl
Commit message (Collapse)AuthorAgeFilesLines
...
* restore normal length optimization in dlistsKeith Whitwell2001-06-288-13/+97
|
* Added fi_type union typedef to glheader.h.Brian Paul2001-06-152-55/+57
| | | | | Replace various float/int casts with the fi_type union cast. Fixes -fstrict-aliasing problems.
* disabled an assertion that doesn't seem to be neededBrian Paul2001-06-131-1/+3
|
* Adaptor code that lets tnl convert compiled (display list) cassettes backKeith Whitwell2001-06-047-112/+305
| | | | | | | to glVertex() type calls. Allows driver-supplied tnl modules to avoid fallback on glCallList inside begin/end pairs. Still a little buggy...
* added minor commentsBrian Paul2001-06-011-2/+4
|
* swapped in/out arguments to interp_func. Improved commentsBrian Paul2001-05-311-5/+17
|
* rerun vertex stage on _MESA_NEW_NEED_EYE_COORDSKeith Whitwell2001-05-301-1/+2
|
* Initial commit of cliptest work. More to come shortly.Gareth Hughes2001-05-211-4/+4
| | | | | | | | - Add debug, benchmark code. - Change linux/x86 FAST_MATH code to GCC/x86, and clear FP exceptions before exiting the fast math block. - Remove divide-by-zero test in x86 cliptest, and set clipped vertices to [0,0,0,1] instead of leaving them uninitialized.
* Comment out __FUNCTION__ usage.Keith Whitwell2001-05-171-8/+6
|
* fix for Jouk's glplanet bugKeith Whitwell2001-05-163-4/+9
|
* increase FOG_MAX to 10.0 to fix CI conformace failureBrian Paul2001-05-151-5/+5
|
* typoKeith Whitwell2001-05-141-9/+6
|
* Fix for glean texgen test.Keith Whitwell2001-05-145-16/+52
|
* Clean up _tnl_Begin/begin/hard_begin.Keith Whitwell2001-05-116-141/+147
| | | | Fix some problems with draw_arrays, draw_elements.
* Clean up translation of array elements, copying of elts in pure-eltKeith Whitwell2001-05-1110-154/+97
| | | | cassettes. Fixes problem with isosurf/compiled-array-elt/strips.
* Replace PipelineStart, PipelineFinish with RunPipeline. Clean upKeith Whitwell2001-05-104-50/+34
| | | | _tnl_run_pipeline() a little.
* add missing translate functionsKeith Whitwell2001-05-091-4/+13
|
* fix possible segfault on destroy contextKeith Whitwell2001-05-093-10/+16
|
* Use correct PV when clipping.Keith Whitwell2001-05-091-7/+7
|
* fix eval/colormaterial interactionKeith Whitwell2001-05-091-2/+4
|
* fix for moebius infinite loopKeith Whitwell2001-05-033-33/+59
|
* added assertion to catch infinite loop in _tnl_fixup_compiled_cassette() - ↵Brian Paul2001-05-031-2/+4
| | | | might help Keith
* minor clean-ups and warning fixesBrian Paul2001-05-031-4/+4
|
* removed debugKeith Whitwell2001-05-013-18/+15
|
* Lots more eval fixesKeith Whitwell2001-04-3011-304/+400
|
* Restore optimization for cva glArrayElement operation.Keith Whitwell2001-04-302-3/+11
|
* Support for floating point color representation in tnl module.Keith Whitwell2001-04-2815-527/+462
|
* first pass at eval fixesKeith Whitwell2001-04-2611-133/+213
|
* no-copy drawarrays for remaining non-fan primitivesKeith Whitwell2001-04-261-15/+75
|
* Remove values from VB->importable_data as those arrays are removedKeith Whitwell2001-04-191-2/+3
| | | | from the VB.
* Fix striding of color material inputs. (Fixes glean colorLitPerf)Keith Whitwell2001-04-191-28/+30
|
* fixed mis-ordered args to _math_trans_4f() in _tnl_fill_immediate_drawarrays()Brian Paul2001-04-171-2/+2
|
* Perform fixup on material valuesKeith Whitwell2001-04-095-78/+112
|
* Remove all traces of CULL_MASK_ACTIVE.Gareth Hughes2001-03-303-53/+51
|
* Remove ENABLE_* flags, ctx->_Enabled.Keith Whitwell2001-03-292-10/+18
| | | | Replace with ctx->Texture._TexMatEnabled, ctx->Texture._TexGenEnabled.
* Removed DD_Z_NEVER.Brian Paul2001-03-292-11/+9
| | | | | | Replaced SEPERATE with SEPARATE. Renumbered _NEW_ flags. Removed _NEW_COLORTABLE.
* Split driver struct into swrast/tnl/core components.Keith Whitwell2001-03-197-86/+201
|
* Consistent copyright info (version number, date) across all files.Gareth Hughes2001-03-1238-793/+797
|
* Clean up install, restore for exec vtxfmts.Gareth Hughes2001-03-111-2/+2
|
* Support for swappable tnl modules.Gareth Hughes2001-03-111-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Core Mesa provides a neutral tnl module that verifies the currently module before installing the tnl function pointers in a lazy fashion. It also records which tnl functions have been swapped out, and only restores these when tnl modules themselves are swapped. Fallback strategies: Drivers set a bitmask of dangerous stage changes. When such a state change occurs, the driver should restore the neutral tnl module via _mesa_restore_exec_vtxfmt(). The neutral tnl module will call _mesa_update_state(), followed by ctx->Driver.ValidateTnlModule() if the validation bitmask matches the new state bitmask. The driver should call _tnl_wakeup_exec() if it can no longer handle the current state, which will revert to the default tnl module. In this case, previous vertices should be replayed as required (depending on the current primitive) after the new tnl module is installed. If the driver uses chooser functions for any part of the tnl module, these should generally be reinstalled as part of the fallback to the neutral tnl module. For example, if the lighting state changes, a driver might fall back to the neutral tnl module, verify that the current lighting state can be handled, and use the chooser function to pick the most efficient implementation of the current lighting state. It is up to the drivers to detect and handle fallback cases caused by tnl function calls themselves (such as glTexCoord4f* if the current tnl module can't handle projected textures, for example).
* More g++ warning fixes. Fixes for CHAN_BITS==16, it seems to work.Brian Paul2001-03-082-5/+6
|
* fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵Brian Paul2001-03-0712-70/+76
| | | | of potential problems
* more namespace clean-upsBrian Paul2001-03-034-29/+29
|
* lots of gl_*() to _mesa_*() namespace clean-upBrian Paul2001-03-0314-107/+107
|
* added fog coord clampingBrian Paul2001-02-271-3/+5
|
* Added GLvector4chan type, removed lots of CHAN_TYPE ifdefs.Keith Whitwell2001-02-207-174/+60
|
* Allow swrast to cope (fairly) cleanly with GL_SEPERATE_SPECULAR whenKeith Whitwell2001-02-163-64/+29
| | | | | | | | | | | | | texturing is not enabled, and without requiring the two colors be added externally. As a part of this, collapsed the decomposition of quads into triangles inside swrast to be hardwired into _swrast_Quad; removed s_quads.[ch]. Removed checks on texture state from t_vb_light.c, which was previously required by swrast. Moved the t_dd_ templates to a new directory.
* Fixed conform problems with recent material tracking change.Keith Whitwell2001-02-167-68/+62
| | | | | | Remove redundant 'update_materials' stage. Fix conform segfault with seperate specular colors in mustpass.c. These tests still fail, however.
* Fix propogation of material values in VB's that don't reach the lightingKeith Whitwell2001-02-1511-234/+150
| | | | | | | | | stage. (Materials now treated more like colors, etc.). Continue whipping the dd templates into shape. Remove old NormalLength code; may come back as a driver helper, but not useful for, eg. hardware t&l drivers.
* fixed a CI-mode spot light conformance failure, but still not clear whyBrian Paul2001-02-141-2/+5
|