Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-03-01 | svga: adapt to new vertex element cso | Roland Scheidegger | |
2010-03-01 | trace: adapt to new vertex element cso | Roland Scheidegger | |
2010-02-26 | nv50: adapt to vertex elements cso | Christoph Bumiller | |
2010-02-17 | gallium: remove redundant nr_components field from pipe_vertex_element | Roland Scheidegger | |
This is a property of the associated src_format pipe format. Hence use util_format_get_nr_components to query this when necessary instead. | |||
2010-02-16 | nv50: use hw idx buffers where we can | Ben Skeggs | |
2010-02-16 | nouveau: fix for latest libdrm | Ben Skeggs | |
2010-02-15 | r300g: fix the size of constant buffers | Marek Olšák | |
4 more piglit tests pass, sweet. | |||
2010-02-15 | trace: Dump blend state as a binary blob. | José Fonseca | |
Gallium interfaces are too fluid -- XML or not is just too much work trying to accommodate for differences in traces. SWIG generated bindings are also full of quirks, making unmarshalling the XML from too hard. Finally, this is the first step for faster tracing. | |||
2010-02-15 | trace: Fix constant buffer unwrapping. | José Fonseca | |
Pointer unwrapping should happen before dump the pointer, so that the real pipe driver pointers are shown, instead of the trace driver's. | |||
2010-02-14 | trace: No need to dump reference counts. | José Fonseca | |
2010-02-14 | trace: Update for os_stream changes. | José Fonseca | |
2010-02-14 | llvmpipe: Silence unused value warning. | Vinson Lee | |
2010-02-14 | svga: Silence uninitialized variable warning. | Vinson Lee | |
2010-02-14 | r300: add half_float_vertex support | Marek Olšák | |
2010-02-14 | r300g: set the correct tiling flags for renderbuffers | Marek Olšák | |
MACRO_SWITCH is applied to samplers but not renderbuffers. This commit fixes incorrect rendering to large and small mipmaps where the large ones are macrotiled and the small ones are not and both are emitted in the same CS. Note that this is still disabled by default (rework of texture transfers is next). | |||
2010-02-14 | r300g: add macrotiling support to texture setup | Marek Olšák | |
2010-02-14 | r300g: accelerate blitting for all formats by faking the texture format | Marek Olšák | |
2010-02-14 | r300g: fix texture formats: A4R4G4B4_UNORM, A1R5G5B5_UNORM, R5G6B5_UNORM | Marek Olšák | |
2010-02-14 | llvmpipe: s/debug_dump_/util_dump_/ | José Fonseca | |
2010-02-14 | cell: Use util_format_name(). | José Fonseca | |
2010-02-14 | llvmpipe: Use util_format_name(). | José Fonseca | |
2010-02-14 | nv: Use util_format_name(). | José Fonseca | |
2010-02-14 | r300g: Use util_format_name(). | José Fonseca | |
2010-02-14 | trace: Use util_format_name(). | José Fonseca | |
2010-02-14 | trace: Fix generated XML. | José Fonseca | |
2010-02-13 | llvmpipe: Silence uninitialized variable warning. | Vinson Lee | |
2010-02-13 | softpipe: Silence uninitialized variable warnings. | Vinson Lee | |
2010-02-14 | r300g: fix scons build | Marek Olšák | |
2010-02-13 | softpipe: fix broken cubemap / mipmap selection code | Brian Paul | |
This is a quick-fix for the time being... The per-face mipmap LOD computation was invalid at cube edges. In mip_filter_nearest/linear() we were trying to compute LOD using texcoords that were sometimes indexes into different cube faces. The subtraction used to compute the partial derivatives basically gave random values, so the LOD was unpredictable. This fix simply uses the same cube face for all four pixels in the quad. The per- face texcoords all reference the same cube face so the partial deriviates are computed properly. A more elaborate fix would involve computing the LOD at the same time as we choose the cube faces. But for now, this solution works well and allows the piglit/cubemap test to pass. (cherry picked from commit 1ff9cd5079b095d7050edb8dc6a7e5b8cad36e1e) | |||
2010-02-13 | svga: Fix texture border color. | José Fonseca | |
Also opposite ordering. | |||
2010-02-13 | r300g: do not invalidate texture caches when only sampler state is changed | Marek Olšák | |
2010-02-13 | r300g: cleanup the emission of RS block state | Marek Olšák | |
Emit as few regs as possible. | |||
2010-02-13 | r300g: cleanup the emission of framebuffer state | Marek Olšák | |
Some emits are not needed anymore. | |||
2010-02-13 | r300g: disable independent blend enables | Marek Olšák | |
Not supported by r300. | |||
2010-02-13 | r300g: emit INDEPENDENT_COLORFORMAT_ENABLE only on r5xx | Marek Olšák | |
2010-02-12 | svga: Silence uninitialized variable warning. | Vinson Lee | |
2010-02-12 | svga: A few more tweaks to blend color state emission. | José Fonseca | |
2010-02-12 | svga: Clamp max cube texture levels to supported max 2d levels. | José Fonseca | |
2010-02-12 | svga: Report the 2d/3d texture sizes supported by the host. | José Fonseca | |
2010-02-12 | cell: implement PIPE_CAP_MAX_COMBINED_SAMPLERS query | Brian Paul | |
2010-02-12 | svga: enable code to emit blend color | Roland Scheidegger | |
2010-02-12 | Merge branch 'gallium-dynamicstencilref' | Roland Scheidegger | |
2010-02-12 | nouveau: nv30: it may have 8 texture samplers (not 4), but shader engine has ↵ | Patrice Mandin | |
16 texture units Signed-off-by: Patrice Mandin <patmandin@gmail.com> | |||
2010-02-12 | cell: adjust structure padding | Brian Paul | |
The size of some core Gallium state structures has changed so the padding on some cell structs needed to be adjusted to keep them a multiple of 16 bytes. | |||
2010-02-12 | cell: remove unused var | Brian Paul | |
2010-02-12 | cell: include cell_context.h | Brian Paul | |
2010-02-12 | cell: re-fix undeclared var | Brian Paul | |
2010-02-12 | cell: declare stencil_value variable | Brian Paul | |
2010-02-12 | nouveau: nv30: Define number of texture samplers | Patrice Mandin | |
Signed-off-by: Patrice Mandin <patmandin@gmail.com> | |||
2010-02-12 | svgadump: Several improvements to shader dumping. | José Fonseca | |