Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-12-28 | nouveau: Fix nv20-40 swizzled miptree RTs | Luca Barbieri | |
I just coded a patch that does this and seems to work fine. It must be fixed since it breaks OpenGL (or the state tracker can be changed, but it seems better to do it in the driver). The patch also fixes NV20 and NV30 in the same way. They compile but are untested. I would guess that using the 3D engine is faster for the larger levels, but the 2D engine is faster for the smaller ones (and lacks this issue). | |||
2009-12-28 | NV30/NV40 CMP and SCS src == dst handling | Luca Barbieri | |
CMP and SCS can produce incorrect results if the source and destination are the same. This patch should fix the issues. CMP is fixed by predicating both moves. SCS by changing the order if the source component is X. | |||
2009-12-28 | llvmpipe: Unmapping vertex/index buffers does NOT flush draw module anymore. | José Fonseca | |
Not since 6094e79f4e3350d123c7532b1c73faa60834a62d. Drivers now need to flush draw module explicitely (which explains why all those previous commits adding draw_flushes calls were necessary). This is a good thing, but it's tricky to get this right in face of user buffers (it's not even clear who has the responsibility to flush when a user buffer is seen -- statetracker or pipe driver), so just force flush (temporarily) since it's not a bottleneck now. | |||
2009-12-28 | xlib: Integrate the trace driver with all pipe drivers. | José Fonseca | |
And not just softpipe. It is particularly convenient to use llvmpipe instead, since it is much faster. It also allows to use rbug with all xlib drivers. | |||
2009-12-28 | nv04: Fix build after the latest nouveau_class.h changes. | Francisco Jerez | |
2009-12-28 | nv50: Dehexify and bring up to date with new method defines. | Marcin Kościelnicki | |
Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2009-12-28 | llvmpipe: Silence compiler warnings. | Vinson Lee | |
2009-12-27 | trace: Silence unused variable warnings. | Vinson Lee | |
2009-12-27 | i915g: Silence unused variable warning. | Vinson Lee | |
2009-12-27 | softpipe: Silence unintialized variable warnings. | Vinson Lee | |
2009-12-27 | softpipe: Silence unused variable warning. | Vinson Lee | |
2009-12-27 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_network.c src/gallium/auxiliary/util/u_network.h src/gallium/drivers/i915/i915_state.c src/gallium/drivers/trace/tr_rbug.c src/gallium/state_trackers/vega/bezier.c src/gallium/state_trackers/vega/vg_context.c src/gallium/state_trackers/xorg/xorg_crtc.c src/gallium/state_trackers/xorg/xorg_driver.c src/gallium/winsys/xlib/xlib_brw_context.c src/mesa/main/mtypes.h | |||
2009-12-26 | softpipe: Flush draw module when fragment pipeline state changes. | José Fonseca | |
2009-12-26 | llvmpipe: Treat state changes systematically. | José Fonseca | |
That is: - check for no op - update/flush draw module - update bound state and mark it as dirty In particular flushing the draw module is important since it may contain unflushed primitives which would otherwise be draw with wrong state. | |||
2009-12-26 | llvmpipe: Use comments and more code from softpipe's is_texture_referenced ↵ | José Fonseca | |
implementation. | |||
2009-12-26 | softpipe: Flush draw module before switching framebuffer. | José Fonseca | |
Otherwise geometry might end up in the wrong rendertarget. | |||
2009-12-26 | llvmpipe: Flush draw module before switching framebuffer. | José Fonseca | |
Otherwise geometry will end up in the wrong rendertarget. | |||
2009-12-26 | trace: Fix transfer size computation. | José Fonseca | |
2009-12-26 | svga: Allow to dump an individual command. | José Fonseca | |
2009-12-26 | r300g: fixup for GS additions | Dave Airlie | |
draw_set_mapped_constant_buffer changed API | |||
2009-12-25 | gallium: geometry shader can be always enabled and we don't need a cap for that | Zack Rusin | |
using the draw module allows us to enable geometry shading even on hardware that doesn't support it. | |||
2009-12-25 | softpipe: make it possible to dump geometry shader from the softpipe | Zack Rusin | |
2009-12-25 | softpipe/gs: don't crash with null shader | Zack Rusin | |
2009-12-25 | gs: fix drivers so they work with geometry shaders | Zack Rusin | |
2009-12-25 | gallium: add geometry shader support to gallium | Zack Rusin | |
2009-12-24 | i965g: get trivial/tri working again after edgeflag changes | Keith Whitwell | |
2009-12-24 | i965g: strict aliasing changes | Keith Whitwell | |
2009-12-24 | i965g: calculate depth min/max | Keith Whitwell | |
Previously hard-wired to 0..1 | |||
2009-12-24 | nv50: support TGSI_OPCODE_CONT | Christoph Bumiller | |
2009-12-24 | nv50: make edgeflags work | Christoph Bumiller | |
It doesn't seem to be possible to set the egdeflag in the vertex shader, so we need to fallback to pushing vertices through the FIFO and use method 0x15e4 if they are used. This only works if VP does MOV OUT[X] IN[Y] where X is the edgeflag output, and Y is saved so we can tell the correct input later. The VP still writes the useless values to wasted outputs as punishment. | |||
2009-12-23 | gallium: propagate draw retval changes into cell driver | Roland Scheidegger | |
2009-12-23 | llvmpipe: Install unit tests on build/xxx/bin | José Fonseca | |
2009-12-23 | i965g: Rename {pf->util_format}_is_depth_or_stencil() | Tomas Carnecky | |
2009-12-23 | [i965] Rename {pf -> util}_format_is_depth_or_stencil() | Tomas Carnecky | |
The function was moved and renamed in 0bed834b. Signed-off-by: Tomas Carnecky <tom@dbservice.com> | |||
2009-12-22 | trace: Silence uninitialized variable warnings. | Vinson Lee | |
2009-12-22 | trace: Add PIPE_OS_APPLE. | Vinson Lee | |
2009-12-22 | i915g: Use C-style comment. | Vinson Lee | |
2009-12-22 | i965g: fix for edgeflag changes (untested) | Roland Scheidegger | |
2009-12-22 | Merge branch 'gallium-edgeflags' | Roland Scheidegger | |
Conflicts: src/mesa/state_tracker/st_draw.c | |||
2009-12-22 | i965g: fix bo_reference | Keith Whitwell | |
2009-12-22 | i965g: update for u_format changes | Keith Whitwell | |
2009-12-22 | Merge branch 'i965g-restart' | Keith Whitwell | |
Conflicts: configure.ac | |||
2009-12-22 | nv50: correct the negation of DDY sources | Christoph Bumiller | |
The state tracker now does the correct thing, so interpret negation normally. | |||
2009-12-21 | gallium: propogate draw retval changes into more drivers | Keith Whitwell | |
2009-12-21 | gallium: remove return value from draw calls | Keith Whitwell | |
2009-12-21 | i965g: fixes to build after merge of master | Keith Whitwell | |
2009-12-21 | i965g: remove half-finished change to tgsi_parse | Keith Whitwell | |
2009-12-21 | Merge commit 'origin/master' into i965g-restart | Keith Whitwell | |
Conflicts: SConstruct configs/default configs/linux-dri | |||
2009-12-21 | svga: fix typo | Roland Scheidegger | |
2009-12-21 | i965g: hook vertex state emit up to PIPE_NEW_VERTEX_BUFFER | Keith Whitwell | |