Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-02-22 | Revert "r300g: rebuild winsys/pipe buffer handling and add buffer map" | Dave Airlie | |
This reverts commit fff5be8e7b4557c221f2425dcafc2e7cbbba76ba. Probably went too soon with this, dileX reported OA not working for him it works here fine, but the optimisations I wanted aren't working properly yet so I'll fix that now. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-02-22 | r300g: rebuild winsys/pipe buffer handling and add buffer map | Dave Airlie | |
This creates a cleaner winsys and drop the simple screen stuff. It makes r300g use pb_bufmgr structs and adds usage of the cached bufmgr for vertex/index buffers. It also avoids mapping too often. I'm not 100% sure this is perfect but it won't find its own bugs. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-02-22 | r3OOg: support rendering of more than 65535 vertices per draw call (almost) | Marek Olšák | |
The path for VAP_ALT_NUM_VERTICES is also in place (and tested) but not enabled by default due to the missing support of this reg in the upstream kernel. Also, a non-zero BUFFER_BASE in the INDX_BUFFER packet3 hangs the machine. Am I missing something? Because of this, only draw_arrays can render more than 65535 vertices without the use of VAP_ALT_NUM_VERTICES. | |||
2010-02-21 | i965g: Fix memory leak. | Vinson Lee | |
2010-02-21 | r300g: Remove unnecessary header. | Vinson Lee | |
2010-02-21 | r300g: precompute framebuffer register values | Marek Olšák | |
2010-02-21 | r300g: add all missing colorbuffer formats | Marek Olšák | |
2010-02-21 | r300g: make r300_translate_texformat private | Marek Olšák | |
Unlikely to increase performance from inlining. And partially expose it through r300_is_sampler_format_supported. | |||
2010-02-21 | r300g: re-enable SRGB formats | Marek Olšák | |
Ouch. | |||
2010-02-21 | i965g: Remove dead code. | Vinson Lee | |
2010-02-21 | i965g: Fix assertions that were always true. | Vinson Lee | |
The surface_format field is 9 bits wide which has a maximum value of 511. BRW_SURFACEFORMAT_INVALID has a value of 4095 which exceeds the width of the surface_format field. This patch asserts that the format is not BRW_SURFACEFORMAT_INVALID before assignment to the surface_format field. | |||
2010-02-21 | i965g: Fix use of out-of-scope variable. | Vinson Lee | |
2010-02-19 | r300g: fix rendering into the L8 and A8 texture formats | Marek Olšák | |
RB3D_COLORPITCH.COLORFORMAT.I8 stores the C2 component. | |||
2010-02-19 | Replace the _mesa_*printf() wrappers with the plain libc versions | Kristian Høgsberg | |
2010-02-19 | Revert "r300g: remove L8_UNORM from colorbuffer formats" | Corbin Simpson | |
This reverts commit fc427d23439a2702068209957f08990ea29fe21b. At least xorg uses this, and just because something is not used in OpenGL is *never* a valid reason to remove functionality from Gallium. If something lacks a test, go add a test, don't remove features. | |||
2010-02-19 | r300g: remove L8_UNORM from colorbuffer formats | Marek Olšák | |
Not renderable in OpenGL anyway. | |||
2010-02-18 | softpipe: fix depth testing problems | Brian Paul | |
The optimized Z-test functions assumed that the array of incoming quads are adjacent, but that's not always true. The fragment shader can cull intermediate quads, for example. Now these Z-test functions can cope with non-adjacent quads. A little bit of performance is probably lost, but it's probably not worth worring about. This fixes broken glBitmap() Z testing, among other things. (cherry picked from commit d437d905e6924ebc05ec9efe87e1e2c48d75bc13) | |||
2010-02-18 | softpipe: comments and whitespace fixes | Brian Paul | |
2010-02-18 | softpipe: const qualifiers, comments | Brian Paul | |
2010-02-18 | identity: Propagate api->name and api->driver_name up | Jakob Bornecrantz | |
2010-02-18 | trace: Propagate api->name up | Jakob Bornecrantz | |
2010-02-17 | svga: Silence uninitialized variable warnings. | Vinson Lee | |
2010-02-18 | r300g: add support for all missing non-FP sampler formats | Marek Olšák | |
The idea is to directly parse the format description in r300_translate_texformat and return ~0 if the format is unsupported. | |||
2010-02-17 | llvmpipe: use ffs technique for full tiles also | Keith Whitwell | |
Need to compute two masks here for full and partial 16x16 blocks. Gives a further good improvement for isosurf particularly: isosurf 97 -> 108 gears 597 -> 611 | |||
2010-02-17 | llvmpipe: rework do_block_16 to use bitmasks and ffs | Keith Whitwell | |
Some nice speedups: gears: 547 -> 597 isosurf: 83 -> 98 Others like gloss unchanged. Could do further work in this direction. | |||
2010-02-16 | nv40: Fix incorrect so_new() numbering. | Francisco Jerez | |
2010-02-16 | nv40: Implement PIPE_CAP_MAX_COMBINED_SAMPLERS. | Francisco Jerez | |
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 | |