summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_quad_depth_test.c
AgeCommit message (Collapse)Author
2007-10-29Make gallium compile in win32.Michal Krol
Use FREE, MALLOC, CALLOC, GETENV wrappers. Silence compiler warnings. Add proper copyrights.
2007-10-27Use FREE instead of free. Fix newlines.michal
2007-10-27Define destroy method called by softpipe's destructor.michal
2007-10-27Remove remnants of softpipe_surface.Brian
This is the last of the clean-up following the change which moved surface allocation to the winsys layer.
2007-10-25Move the get/put_tile() functions to pipe_context.Brian
The _rgba versions are temporary until the state tracker is updated.
2007-10-20Convert Z/stencil ops to use cached tiles like colors.Brian
Also, quite a bit of re-org of the tile caches and surface mapping/unmapping. Leave surfaces mapped between primitives now.
2007-10-19Initial implementation of surface tile caching.Brian
Instead of using read/write_quad() functions, do framebuffer accesses via get/put_tile(). A cache of tiles is used to avoid frequent get/put() calls. Only implemented for color buffers right now.
2007-09-18Combing depth and stencil objects and making them immutable.Zack Rusin
Converting depth and stencil objects into a single state object (d3d10 like) and making it immutable.
2007-08-14Continue reducing dependencies on core mesa include files.Keith Whitwell
Mainly down to the support for legacy TNL processing now.
2007-08-08fix qs->next testsBrian
2007-08-08add quad_stage::begin() funcsBrian
2007-08-01s/Z24_S8/S8_Z24/ (stencil is in the high byte)Brian
2007-07-30compute scale for Z24 buffersBrian
2007-07-10Checkpoint: stencil roughly working, some bugs to fix...Brian
2007-07-10clean-upsBrian
2007-07-10Fill in remaining switch cases. Only call next stage if quad->mask != 0.Brian
2007-07-10Do depth testing with integer values.Brian
Using floats (and float->ushort->float conversion) introduces errors. Only GLushort depth buffers work for now...
2007-07-03SIMD commentsBrian
2007-06-25fix logic error in updating of quad's Z values. Basic depth testing works nowBrian
2007-06-25clean-upsBrian
2007-06-24Restructure z test code slightly.Keith Whitwell
Make the logic slightly closer to an eventual SSE or SPE implementation.
2007-06-20checkpoint: implement z/depth testingBrian
2007-06-20update includes (s/tile/quad/)Brian
2007-06-20Rename "tile" files to "quad".Brian