aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/tnl/t_imm_exec.c
Commit message (Collapse)AuthorAgeFilesLines
* Overhaul of texture image handling.Brian Paul2001-02-061-2/+1
| | | | | | | | | | 1. gl_texture_image struct's Data pointer points to images in driver's format. 2. Added FetchTexel() function pointer to struct gl_texture_image. 3. Changed Driver Tex[Sub]Image functions, return void now. 4. Texture storage/fetch code in new texstore.c file. 5. Removed texture.[ch] - functions moved to state.c Note: FX driver updates not finished yet.
* Lots of GLchan datatype changes.Brian Paul2001-01-241-4/+12
| | | | | | | | | Added GLvector4us datatype in math/m_vector.[ch] Added _math_trans_4us() in math/m_translate.[ch] Choose GLvector4ub, GLvector4us, GLvector4f at compile time based on CHAN_BITS. Made Driver.ClearColor() and Driver.ClearIndex() optional driver functions. Changed args to Driver.ClearColor(), updated drivers. Reordered files in Makefile.X11
* Fixed conform feedback and drawelements tests.Keith Whitwell2001-01-141-3/+3
| | | | Use correct pv when rasterizing unfilled polys.
* Fix crash in book/stencil.Keith Whitwell2001-01-131-8/+13
| | | | | Allow drivers to perform the perspective divide themselves. Assembly to do cliptesting without perspective divide for size-4 vectors.
* Fixed 'IRound' to 'IROUND' in mmath.hKeith Whitwell2001-01-081-5/+2
| | | | | | Fixed fallback path for drawarrays/_tnl_hard_begin. Removed disabled debug code.
* Remove 'pv' parameter from Line/Tri/Point funcs. The provoking vertexKeith Whitwell2001-01-051-8/+5
| | | | | | | | | | | | | | is always the last vertex parameter. Modify clipping to preserve pv colors. Modify swrast and X11 driver to expect the pv in the last vertex (was looking in the first vertex previously). Remove all handling of flatshading from swrast_setup. Allow drivers to override the unclipped render tabs in tnl_render_stage directly. (Like in 3.4). Removed fxsimplerender stage. Modified t_vb_rendertmp.h to remove the need for 'parity' arguments in RENDER_TRI macros.
* Add render stage for unclipped vb's to fx driver.Keith Whitwell2000-12-281-1/+5
| | | | | | Bump MAX_TEXTURE_UNITS to 8 Fix mem. leak in destroy_lists Fix crash in q3 (cva generally)
* fix demos/fire, enable lazy vertex flushingKeith Whitwell2000-12-271-1/+3
|
* fix sproingies bugKeith Whitwell2000-12-271-7/+7
|
* Major rework of tnl moduleKeith Whitwell2000-12-261-0/+507
New array_cache module Support 8 texture units in core mesa (now support 8 everywhere) Rework core mesa statechange operations to avoid flushing on many noop statechanges.