summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/gallivm/lp_bld_printf.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-10-15gallivm: use util_snprintf()Brian Paul
2010-10-15gallivm: added lp_build_print_vec4()Brian Paul
2010-04-02gallivm: Add fallthrough comment at end of case statement.Vinson Lee
The code is correct. Tell Coverity that the fallthrough case is intentional.
2010-03-31gallivm: convert floats to doublesZack Rusin
printf can't handle floats, convert them to doubles so that we can actually print floats.
2010-03-29gallivm: use constant size array, added assertion checkBrian Paul
2010-03-29gallivm: added lp_bld_printf() functionChris Li