summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_quad_blend.c
AgeCommit message (Collapse)Author
2009-08-29llvmpipe: Generate the fragment pipeline into a single function.José Fonseca
Still hackish. Will document and optimize later.
2009-08-29llvmpipe: Start hiding llvmpipe_cached_tile.José Fonseca
2009-08-29llvmpipe: Blend in place.José Fonseca
2009-08-29llvmpipe: Code generate logic ops.José Fonseca
2009-08-29llvmpipe: Rasterize the quads according to what the blend function expects.José Fonseca
2009-08-29llvmpipe: Tile in SoA format identical to the blender function output.José Fonseca
2009-08-29llvmpipe: Tiles in rgba8 format.José Fonseca
2009-08-29llvmpipe: Store tile color in SoA.José Fonseca
2009-08-29llvmpipe: Code generate color masking.José Fonseca
2009-08-29llvmpipe: Use the generated SoA blending code.José Fonseca
2009-08-29llvmpipe: cope with nr_cbufs == 0Keith Whitwell
Disable blend code when no color buffer
2009-08-29llvmpipe: move all color-combine code into lp_quad_blend.cKeith Whitwell
Consolidate the read-modify-write color combining code from the blend, colormask and output stages.
2009-08-29llvmpipe: example fastpaths in blendingKeith Whitwell
2009-08-29llvmpipe: actually pass >1 quad from triangle routineKeith Whitwell
First attempt
2009-08-29llvmpipe: expand quad pipeline to process >1 quad at a timeKeith Whitwell
This is part one -- we still only pass a single quad down, but the code can now cope with more. The quads must all be from the same tile.
2009-08-29llvmpipe: remove backwards dependency from tilecache to llvmpipeKeith Whitwell
The tile cache is a utility, it shouldn't know anything about the entity which is making use of it (ie llvmpipe). Remove llvmpipe parameter to all the tilecache function calls, and also remove the need to keep a llvmpipe pointer in the sampler structs.
2009-08-29llvmpipe: Fork softpipe for experimentation with llvm.José Fonseca