summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-09-13llvmpipe: use gcc asm only with gccJosé Fonseca1-1/+1
2010-09-13r300g: print unassigned FS inputs for DBG_RSMarek Olšák1-0/+9
2010-09-13r300g: fix map_bufferMarek Olšák1-4/+17
https://bugs.freedesktop.org/show_bug.cgi?id=30145
2010-09-13r300/compiler: fix warningsMarek Olšák2-2/+3
2010-09-13r300g: add new debug options for dumping scissor regs and disabling CBZB clearMarek Olšák5-3/+16
2010-09-13r300g: skip rendering if CS space validation failsMarek Olšák3-52/+73
radeon_cs_space_check flushes the pipe context on failure, retries the validation, and returns -1 if it fails again. At that point, there is nothing we can do, so let's skip draw operations instead of getting stuck in an infinite loop. This code path ideally should never be hit.
2010-09-13r300g: remove u_upload_flush from r300_draw_arraysMarek Olšák1-1/+0
This a leftover probably and is unnecessary, since we flush u_upload_mgr in r300_flush.
2010-09-12nvfx: Remove unused variables.Vinson Lee3-3/+1
2010-09-12nvfx: Move declaration before code.Vinson Lee1-6/+12
Fixes SCons build.
2010-09-12llvmpipe: introduce tri_3_4 for tiny trianglesKeith Whitwell6-46/+127
2010-09-12llvmpipe: allow tri_3_16 at any 4-aligned location within a tileKeith Whitwell1-27/+50
Doesn't require 16-alignment, so catch more cases.
2010-09-12llvmpipe: refactor tri_3_16Keith Whitwell1-17/+47
Keep step array as a set of four m128i's and reuse throughout the rasterization.
2010-09-12llvmpipe: pass linear masks to fragment shaderKeith Whitwell3-73/+23
Fragment shader can extract the correct bits for each quad.
2010-09-12llvmpipe: fix warnings on both 32 and 64 bit buildsKeith Whitwell1-3/+3
2010-09-12llvmpipe: fix wierd performance regression in isosurfKeith Whitwell1-6/+8
I really don't understand the mechanism behind this, but it seems like the way data blocks for a scene are malloced, and in particular whether we treat them as stack or a queue, and whether we retain the most recently allocated or least recently allocated has a real affect (~5%) on isosurf framerates... This is probably specific to my distro or even just my machine, but none the less, it's nicer not to see the framerates go in the wrong direction.
2010-09-12pb: Fix the build, and add notes.José Fonseca5-5/+14
2010-09-12llvmpipe: Only generate the whole shader specialization for opaque shaders.José Fonseca1-1/+7
If not opaque, then the color buffer will have to be read any way, therefore the specialization is pointless.
2010-09-12pb: add void * for flush ctx to mapping functionsDave Airlie11-28/+24
If the buffer we are attempting to map is referenced by the unsubmitted command stream for this context, we need to flush the command stream, however to do that we need to be able to access the context at the lowest level map function, currently we set the buffer in the toplevel map, but this racy between context. (we probably have a lot more issues than that.) I'll look into a proper solution as suggested by jrfonseca when I get some time.
2010-09-11nv30: fix breakage due to 10 texcoord support on nv40Luca Barbieri1-2/+2
2010-09-12Add missing files to the tarball file lists.Chia-I Wu1-1/+6
2010-09-12mesa: Fix depend.es[12] generation when LLVM is enabled.Chia-I Wu2-29/+27
"llvm-config --cflags" outputs -f options, which conflict makedepend. Clean up compiler flags and append LLVM_CFLAGS to the new xxx_CFLAGS instead of xxx_CPPFLAGS, where xxx may be MESA, ES1, or ES2.
2010-09-11r600g: Undo bo placement change.Tilman Sauerbeck1-1/+1
This reverts a part of e795ca8f3175fa6fd97b6b2ef2775e3f8803012a that causes artefacts and a performance drop. Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de>
2010-09-11llvmpipe: Silence some warnings.José Fonseca1-2/+2
2010-09-11gallivm: nr_channels is only valid for formats with plain layout.José Fonseca1-3/+1
This is erroneously throwing non plain formats out of the faster AoS sampling path. Doing 8bit interpolation for single channels such as L8 should be no worse than with floating point. But this may need more investigation.
2010-09-11gallivm: Use const keyword on swizzles.José Fonseca2-2/+2
2010-09-11gallivm: Allow to TGSI AoS translation to happen in BGRA ordering.José Fonseca2-33/+87
Or any ordering.
2010-09-11llvmpipe: Don't store display the alpha ref value in the key.José Fonseca4-12/+13
It's never used.
2010-09-11gallivm: Add a new debug flag to warn about performance issues.José Fonseca8-8/+50
2010-09-11gallivm: Helper functions for pointer indirection.José Fonseca2-0/+56
2010-09-11gallivm: Cleanup the TGSI <-> sampler interface.José Fonseca2-9/+4
2010-09-11gallivm: Add some utility functions to set/get array elements too.José Fonseca2-0/+70
2010-09-11gallivm: Basic AoS TGSI -> LLVM IR.José Fonseca4-0/+1156
Essentially a variation of the SoA version.
2010-09-11gallivm: Move the texture modifiers to the header.José Fonseca2-19/+20
Useful to pass these around.
2010-09-11gallivm: s/lp_build_broadcast_aos/lp_build_swizzle_scalar_aos/José Fonseca3-6/+9
More accurate description of this function purpose.
2010-09-11Add a test for the KIL opcodeAlex Corscadden1-0/+18
This is a simple test for the KIL opcode. It should render a 6 sided figure with a colored interior.
2010-09-11llvmpipe: restore larger command blocksKeith Whitwell1-1/+1
2010-09-11llvmpipe: move some debug to DEBUG_SCENEKeith Whitwell1-2/+2
2010-09-11llvmpipe: add DEBUG_MEM optionKeith Whitwell3-0/+14
2010-09-11llvmpipe: allow bigger scenesKeith Whitwell1-1/+1
2010-09-10r300/compiler: Reorganize presub_helper()Tom Stellard1-33/+27
2010-09-10r300/compiler: Don't use presubtract in TEX instructionsTom Stellard1-1/+6
2010-09-10r300/compiler: Print the presub subtract operation in the correct orderTom Stellard1-6/+6
2010-09-10r300/compiler: Fix dataflow bug in presub_helper()Tom Stellard1-0/+2
2010-09-10r300/compiler: Replace asserts with error messagesTom Stellard1-2/+10
2010-09-10r300/compiler: Fix copy propigation for some presub instructionsTom Stellard1-1/+1
2010-09-10r300/compiler: Add peephole optimization for the 'sub' presubtract operationTom Stellard1-8/+17
2010-09-10r300/compiler: Add peephole optimization for the 'add' presubtract operationTom Stellard2-84/+200
2010-09-10r300/compiler: Clean up rc_pair_alloc_source()Tom Stellard1-20/+12
2010-09-10r300/compiler: Enable presubtract sourcesTom Stellard17-94/+1074
The r300 compiler can now emit instructions that select from the presubtract source. A peephole optimization has been added to convert instructions like: ADD Temp[0].x, none.1, -Temp[1].x into the INV (1 - src0) presubtract operation.
2010-09-10mesa: Remove unused Emit flags from gl_shader_compiler_optionsIan Romanick1-2/+0