summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary
Commit message (Collapse)AuthorAgeFilesLines
* util: Remove unused cruft.José Fonseca2010-05-151-95/+0
|
* draw: Use GALLIVM_DEBUG opt.José Fonseca2010-05-151-21/+34
|
* gallivm: Centralize some of the LLVM debugging options.José Fonseca2010-05-152-0/+31
|
* gallivm: Temporarily remove function call supportJosé Fonseca2010-05-151-438/+53
| | | | | Commits moved to the gallivm-call feature branch for further experimentation and stabilization.
* gallivm: use our util_snprintfZack Rusin2010-05-151-1/+2
|
* gallivm: implement function callsZack Rusin2010-05-151-53/+437
|
* gallivm: added some vector length sanity checksBrian Paul2010-05-141-0/+2
|
* gallivm: added lp_sizeof_llvm_type()Brian Paul2010-05-142-0/+41
|
* gallivm: comments, const qualifiersBrian Paul2010-05-141-4/+11
|
* tgsi: clean up in emit_fetch()Brian Paul2010-05-141-43/+41
|
* tgsi: add a dummy function to silence warningBrian Paul2010-05-141-0/+8
|
* util: fix copy_rect stride in default transfer_inline_writeKeith Whitwell2010-05-141-2/+2
|
* rtasm: fix void * / func * casting warningsBrian Paul2010-05-132-4/+24
|
* draw: silence casting warningsBrian Paul2010-05-131-5/+38
|
* gallivm: silence uninitialized var warningBrian Paul2010-05-131-1/+1
|
* gallivm: silence casting warningBrian Paul2010-05-131-1/+17
|
* gallivm: silence uninitialized var warningBrian Paul2010-05-131-1/+1
|
* llvmpipe: silence uninitialized var warningsBrian Paul2010-05-131-1/+2
|
* gallivm: added lp_dump_llvmtype() debug helperBrian Paul2010-05-132-0/+40
|
* llvmpipe: additional commentsBrian Paul2010-05-131-3/+5
|
* gallivm: rename a varBrian Paul2010-05-131-3/+4
|
* util: Fix ptr -> int conversion.José Fonseca2010-05-131-1/+1
|
* Conditionally revert "gallivm: Use a more compact approach for ↵José Fonseca2010-05-131-0/+10
| | | | | | lp_build_broadcast_scalar()." This reverts commit a09e46c72461183c879d8472b44fe740ecc79b9f.
* gallium: Add tokens for Cygwin.Vinson Lee2010-05-132-6/+6
|
* rbug: Update and add READMEsJakob Bornecrantz2010-05-121-1/+1
|
* gallivm: Ensure PIPE_OS_xxx are defined.José Fonseca2010-05-121-0/+1
|
* gallivm: Use a more compact approach for lp_build_broadcast_scalar().José Fonseca2010-05-121-8/+10
| | | | | | | It produces exactly the same machine code, but it cuts 5% of the number of instructions generated for a typical shader. Also, preserve the scalar when length is 1.
* util: Add function to dump PIPE_STENCIL_OP_xxxJosé Fonseca2010-05-122-0/+30
|
* rbug: Add to all targets that link against traceJakob Bornecrantz2010-05-121-0/+4
| | | | | | Also added calls to the create function in target helpers and in tr_drm.c the latter being a hack and should be replaced with the wrap screen target helper. But at least this way we don't regress.
* gallivm: additional commentsBrian Paul2010-05-122-6/+39
|
* gallivm: s/bool/booleanBrian Paul2010-05-121-3/+3
|
* gallivm: rename vars, update comments, etcBrian Paul2010-05-122-21/+23
|
* gallivm: comment out LLVMUnionTypeKind caseBrian Paul2010-05-121-0/+2
|
* gallivm: rename texel result paramBrian Paul2010-05-122-17/+22
| | | | Be clear that this parameter returns four texel channel results.
* gallivm: add a few commentsBrian Paul2010-05-121-3/+3
|
* gallivm/llvmpipe: add const qualifiersBrian Paul2010-05-123-11/+11
|
* gallivm: added lp_typekind_name() util functionBrian Paul2010-05-122-0/+49
|
* tgsi: also count instructions in tgsi_scan_shader()Brian Paul2010-05-122-4/+4
|
* softpipe: Adverstise (tgsi_exec's) shader limits.José Fonseca2010-05-121-4/+5
|
* mesa/st+tgsi: Provide a free callback to match with ureg_get_tokens().José Fonseca2010-05-112-0/+10
| | | | | | This fixes crashes with the memory debugging routines on Windows. NOTE: This is a candidate for the 7.8 stable branch
* gallivm/llvmpipe: move an old comment to a better locationBrian Paul2010-05-101-0/+11
|
* gallivm: Silent warning.José Fonseca2010-05-101-1/+1
|
* gallivm: Add missing lvalue.José Fonseca2010-05-101-1/+1
|
* gallivm: Temporarily disable custom LLVMDumpValue on MSVC.José Fonseca2010-05-101-2/+3
| | | | | | | Seeing very weird crashes during std::cout initialization. The fault probably lies in the way I build LLVM on MSVC, but disable for now to allow more time to investigate.
* gallivm: cosf/sinf are macros on MSVC.José Fonseca2010-05-101-2/+12
| | | | So taking the function address does not work.
* gallivm: Add an alternative to LLVMDumpValue that works with Windows GUI apps.José Fonseca2010-05-086-7/+111
|
* gallivm: Fix mipfiltering with negative lod bias.José Fonseca2010-05-081-2/+4
| | | | | | | In particular, don't use the clamped lod to compute level + 1, or lod in [-1, 0] range will actually interpolate with level 1. This makes Mipfilter DCT pass 100%.
* gallivm: Actually do floor/ceil/trunc for scalars.José Fonseca2010-05-083-166/+34
| | | | | | Also start axing the code duplication for scalar case. The olution is to treat the scalar case specially in a few innermost functions, and leave outer functions untouched.
* gallivm: Import the code to compute the minimax polynomials.José Fonseca2010-05-081-0/+85
| | | | | | It's quite a pain to remember the details after a while, and it is quite likely we'll want to use this again, either for different polynomial orders or different functions, so commit it here.
* gallivm: Use a minimax polynomial for exp2 in range [0,1] instead [-0.5,5].José Fonseca2010-05-081-14/+41
| | | | | | | | | | The advantage of range[-0.5, 0.5] is that it doesn't require floor (for which intrinsics are only available in SSE4.1). But the EXP opcode pretty much forces us to use floor, and there is a good floor approximation around truncation available anyway. This fixes EXP failures in VShader DCT.