Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | tgsi/ureg: Silence uninitialized variable warnings. | Vinson Lee | |
2009-12-27 | docs: insert 7.7 release date | Brian Paul | |
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-27 | docs: insert 7.6.1 release date | Brian Paul | |
2009-12-27 | Merge branch 'mesa_7_7_branch' | Brian Paul | |
2009-12-27 | cell: add glsl to SRC_DIRS | Brian Paul | |
2009-12-27 | st/mesa: add missing case for PIPE_FORMAT_B8G8R8A8_UNORM | Brian Paul | |
2009-12-27 | r300g: fix use of uninitialised variables. | Dave Airlie | |
These buffers were getting dereferenced later. | |||
2009-12-27 | r300g: rename modesetting_drv.so to radeong_drv.so | Dave Airlie | |
2009-12-26 | gallium/util: Remove comma at end of enumerator list. | Vinson Lee | |
2009-12-26 | rbug: Remove comma at end of enumerator list. | Vinson Lee | |
2009-12-26 | rbug: Remove comma at end of enumerator list. | Vinson Lee | |
2009-12-26 | mesa: Remove comma at end of enumerator list. | Vinson Lee | |
2009-12-26 | i915: Fix assert. | Vinson Lee | |
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 | i965: Extra asserts on flow control instructions to clarify for clang. | Eric Anholt | |
2009-12-26 | i965: Clean up double initialization of dst_flags from a rebase resolve. | Eric Anholt | |
Caught by clang. | |||
2009-12-26 | i965: Fix setup of immediate types for gen4 disasm. | Eric Anholt | |
Caught by clang. | |||
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 | tgsi: Don't dump parenthesis for negation. | José Fonseca | |
It doesn't seem necessary, and more importantly, tgsi_parse doesn't know how to read them. | |||
2009-12-26 | progs/demos: Silence warn_unused_result warnings. | Vinson Lee | |
2009-12-25 | progs/util: Silence warn_unused_result warnings. | Vinson Lee | |
2009-12-25 | intel: Silence implicit function declaration warning. | Vinson Lee | |
2009-12-26 | python: Update python state tracker and samples for recent interface changes. | José Fonseca | |
2009-12-26 | trace: Fix transfer size computation. | José Fonseca | |
2009-12-26 | scons: Put the configuration info in the build directory too. | José Fonseca | |
It fixes cached configuration results from one platform being erroneously used in other platforms. | |||
2009-12-26 | svga: Allow to dump an individual command. | José Fonseca | |
2009-12-25 | glu/sgi: Fix include recursion. | Vinson Lee | |
arcsorter.h should not include itself. | |||
2009-12-26 | r300g: fixup for GS additions | Dave Airlie | |
draw_set_mapped_constant_buffer changed API | |||
2009-12-25 | gallium: remove TGSI_SEMANTIC_VERTICES | Zack Rusin | |
it's a leftover from an early version of geometry shading support. geometry shaders now encode the primitive size in the PROPERTY token and don't need special input with their size. | |||
2009-12-25 | draw: disable some debugging output coming from the geometry shaders | Zack Rusin | |
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 | util: put vertices_per_primitive function in its proper location | Zack Rusin | |
2009-12-25 | draw/tgsi: fix geometry shader input/output swizzling | Zack Rusin | |
2009-12-25 | tgsi: dump the indices correctly when dealing with 2d arrays | Zack Rusin | |
2009-12-25 | tgsi: fix property parsing/building | Zack Rusin | |
2009-12-25 | python: fix python state tracker after some latest changes | Zack Rusin | |
2009-12-25 | softpipe: make it possible to dump geometry shader from the softpipe | Zack Rusin | |
2009-12-25 | tgsi: add missing support for two dimensional arrays in various places | Zack Rusin | |
in particular asm text parsing and sanity checking were missing code to handle multi-dimensional arrays/geometry shaders | |||
2009-12-25 | python/gs: fix the example | Zack Rusin | |
2009-12-25 | gallium: add an inline that returns number of vertices per primitive | 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 | |