summaryrefslogtreecommitdiff
path: root/src/gallium
AgeCommit message (Collapse)Author
2010-06-17r300g: more reasonable MSPOS defaults in error pathMarek Olšák
2010-06-17r300g: fix surface leaksMarek Olšák
2010-06-16gallium/docs: GLSL glossary entry.Corbin Simpson
2010-06-16gallium/docs: Explain DFRACEXP/DLDEXP.Corbin Simpson
2010-06-16gallium/docs: Remove unneeded "doubles", add double blurb.Corbin Simpson
2010-06-16gallium/docs: Label opcodes by capability bits.Corbin Simpson
2010-06-16gallium/docs: R and RG texture swizzles.Corbin Simpson
We *did* reach an agreement on this a few months ago, and now the docs reflect it. However, we never got around to UV and Z...
2010-06-16gallium/docs: Flesh out the distro information.Corbin Simpson
I'm not sure I picked the best voice here. I might come back to this later.
2010-06-16gallium/docs: Fix RST error.Corbin Simpson
2010-06-16r300g: Fix uninitialized variable warnings in error path.Vinson Lee
2010-06-16draw: make sure we correctly iterate over output buffers on stream outZack Rusin
we kept overwriting the first attribute of a vertex in a single-stream- out-buffer case
2010-06-16graw: remove wrong testZack Rusin
2010-06-16draw: add stream output decomposition fileZack Rusin
2010-06-16draw: rewrite stream output to handle all the dark cornersZack Rusin
register masks, multiple output buffers, multiple primitives, non-linear vertices (elts) and stride semantics.
2010-06-16translate: don't crash on elts paths with instancesZack Rusin
2010-06-16r300g: Fix up resolve.Corbin Simpson
Yay for old code.
2010-06-16r300g: Fix MSAA state size.Corbin Simpson
2010-06-16r300g: Don't multisample non-32-bpp render targets.Corbin Simpson
2010-06-16r300g: Finish resolve function.Corbin Simpson
2010-06-16r300g: Add resource resolve function.Corbin Simpson
2010-06-16r300g: Moar MSAA setup.Corbin Simpson
Need to just add the resolve, then go switch to new DRM and test.
2010-06-16r300g: Fix indentation.Corbin Simpson
I could *not* let this slide since I'm on a 78-char-wide terminal.
2010-06-16r300g: Old MSAA code from before gallium-msaa.Corbin Simpson
2010-06-16util: add alloc checkAlan Hourihane
2010-06-16draw: add alloc checkAlan Hourihane
2010-06-16draw: handle some out of memory conditionsAlan Hourihane
2010-06-16graw: add a gs test for non-sequential inputsZack Rusin
2010-06-15draw: Remove unnecessary headers.Vinson Lee
2010-06-15gs: make sure we end primitives when finishing executing shadersZack Rusin
2010-06-15draw/gs: make sure gs works with elts and doesn't overrun the bufferZack Rusin
2010-06-15graw: test multiple cb's in geometry shadersZack Rusin
2010-06-15graw: fix setup for multiple constant buffersZack Rusin
2010-06-15draw: run the pipeline with the correct number of vertsZack Rusin
verts per primitive, not total count
2010-06-15draw: fix primitive indexing in the pipelineZack Rusin
spotted by Keith
2010-06-15draw: finish the new pipeline setupZack Rusin
Keith came up with a new way of running the pipeline which involves passing a few info structs around (for fetch, vertices and prims) and allows us to correctly handle cases where we endup with multiple primitives generated by the pipeline itself.
2010-06-15softpipe/gs: fix a crash when a gs isn't presentZack Rusin
2010-06-15draw wipKeith Whitwell
2010-06-14r300g: initialize US_CODE_BANK on r4xxMarek Olšák
2010-06-14gallivm: Omit references to NoFramePointerElimNonLeafJosé Fonseca
It was added after 2.7.
2010-06-14util: Use int type for format field width.José Fonseca
As suggested by gcc warning.
2010-06-14gallivm: Override some of the default target options.José Fonseca
In particular: - enable LLVM <-> GDB integration for JIT code - disable frame-pointer elimination on debug/profile builds - enable fast-math.
2010-06-14gallivm: Use func_to_pointer().José Fonseca
2010-06-14util: Add a func_to_pointer util function too.José Fonseca
2010-06-14graw: small fixups for the gs examplesZack Rusin
2010-06-14r300g: fix uploading RC state shader constants on r3xxMarek Olšák
I've messed this up in one of my previous commits. Reported-by: Igor Murzov
2010-06-14r300g: drop begin_cs/end_csMarek Olšák
I have had a look at the libdrm sources and they just contain more or less the same checking we do in macros, and begin_cs may realloc the CS buffer if we overflow it, which never happens with r300g. So these are pretty much useless. There is a small but measurable performance increase by dropping the two functions.
2010-06-14r300g: rewrite occlusion queriesMarek Olšák
The previous implementation had issues with queries spanning over several command streams as well as using a very large number of queries. This fixes flickering in Enemy Territory: Quake Wars. The driver now renders everything correctly in this game and the graphics is awesome.
2010-06-14r300g: emit viewport state as a dword tableMarek Olšák
2010-06-14r300g: subclass pipe_surfaceMarek Olšák
2010-06-14r300g: simplify reloc macrosMarek Olšák