summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
AgeCommit message (Collapse)Author
2010-11-30gallivm/llvmpipe: squash merge of the llvm-context branchBrian Paul
This branch defines a gallivm_state structure which contains the LLVMBuilderRef, LLVMContextRef, etc. All data structures built with this object can be periodically freed during a "garbage collection" operation. The gallivm_state object has to be passed to most of the builder functions where LLVMBuilderRef used to be used. Conflicts: src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c src/gallium/drivers/llvmpipe/lp_state_setup.c
2010-09-22llvmpipe: Special case complementary and identify blend factors in SoA.José Fonseca
One multiplication instead of two. Also fix floating point random number generation and verification. TODO: Do the same for AoS blending.
2010-09-11gallivm: s/lp_build_broadcast_aos/lp_build_swizzle_scalar_aos/José Fonseca
More accurate description of this function purpose.
2010-09-05gallivm: Pass condition masks as an unsigned bitmask.José Fonseca
Much more convenient than boolean arrays.
2010-07-01llvmpipe: Remove lp_build_swizzle2_aos().José Fonseca
Unnecessary special case.
2010-05-10llvmpipe: fix up indexing of blend/colormask state for render targetsBrian Paul
2010-05-10llvmpipe: add, update, rewrap commentsBrian Paul
2010-04-16llvmpipe: remove unneeded break stmtBrian Paul
2010-04-16gallivm/llvmpipe: move lp_bld_blend* files to llvmpipe/ directoryBrian Paul
2010-02-08llvmpipe: export the tgsi translation code to a common layerZack Rusin
the llvmpipe tgsi translation is a lot more complete than what was in gallivm so replacing the latter with the former. this is needed since the draw llvm paths will use the same code. effectively the proven llvmpipe code becomes gallivm.
2010-02-02gallium: Make pipe_atomic a regular int32_t.José Fonseca
2010-01-20llvmpipe: adapt to per-rendertarget blend changesRoland Scheidegger
2010-01-03llvmpipe: Remove comma at end of enumerator list.Vinson Lee
2009-09-14llvmpipe: Make lp_type a regular union.José Fonseca
Union not worth the hassle of violating C99 or adding a name to the structure.
2009-08-29llvmpipe: Add a bunch of comments.José Fonseca
Description/rationale/to-do items, while I still remember them...
2009-08-29llvmpipe: Debug helper function to name llvm intermediate values.José Fonseca
2009-08-29llvmpipe: Move lp_build_select to lp_bld_logic.[ch].José Fonseca
2009-08-29llvmpipe: Code generate color masking.José Fonseca
2009-08-29llvmpipe: Handle disabled blending too.José Fonseca
2009-08-29llvmpipe: SoA blending.José Fonseca
Throughput seems to be 4x higher.