aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/swrast/s_drawpix.c
Commit message (Collapse)AuthorAgeFilesLines
...
* fixed a bunch of g++ warnings/errors. Compiling with g++ can help find lots ↵Brian Paul2001-03-071-22/+24
| | | | of potential problems
* lots of gl_*() to _mesa_*() namespace clean-upBrian Paul2001-03-031-24/+24
|
* Implemented GL_SGIX_shadow and GL_SGIX_shadow_texture.Brian Paul2001-02-201-2/+3
| | | | Added some const keywords in the s/w texturing code.
* Changed FetchTexel() function pointer arguments.Brian Paul2001-02-171-3/+13
| | | | | | | Implemented glGetTexImage(format=GL_COLOR_INDEX). Changed _mesa_unpack_depth_span() args. Minor changes/clean-ups in mtypes.h. Histogram counter component sizes were wrong.
* Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h.Brian Paul2001-01-231-16/+16
| | | | | Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups.
* Fixed bug in MinMagThresh computation.Brian Paul2001-01-051-3/+3
| | | | Renamed gl_texture_pixels() to _swrast_texture_fragments()
* More color macro clean-ups.Brian Paul2001-01-031-5/+6
| | | | FLOAT_TO_CHAN() macro removed.
* Major rework of tnl moduleKeith Whitwell2000-12-261-5/+1
| | | | | | | 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.
* Cleanup of derived state calculation prior to seperating software T&LKeith Whitwell2000-11-131-37/+37
| | | | | | | | | | | | into a new directory. Specifically the handling of changes to lighting lighting space (light in model vs. light in eye) have been revamped. Moved several derived values used only by swrast into that directory. Removed direct calls to swrast_flush() from vbrender.c -- pushed into ctx->Driver.RenderFinish. Optimized flat-shading case in swrast_setup.
* minor changes to silence compiler warningsBrian Paul2000-11-101-1/+2
|
* Reorganized software rasterizer as a module which manages its own state,Keith Whitwell2000-11-051-16/+20
| | | | | | with tighter interfaces with the rest of the world. Proper documentation to come.
* Moved software rasterizer functionality to new directory.Keith Whitwell2000-10-311-0/+885