Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | i915g: Remove unnecessary header. | Vinson Lee | 2010-01-21 | 1 | -1/+0 |
| | |||||
* | svga: Remove unused variable. | Vinson Lee | 2010-01-21 | 1 | -1/+0 |
| | |||||
* | svga: Remove duplicate code. | José Fonseca | 2010-01-21 | 1 | -4/+2 |
| | |||||
* | svga: Remove unused code. | José Fonseca | 2010-01-21 | 3 | -30/+4 |
| | |||||
* | svga: Don't swap buffers to system memory -- winsys' responsibility. | José Fonseca | 2010-01-21 | 2 | -63/+0 |
| | |||||
* | svga: Avoid synchronization issues when doing SW TNL. | José Fonseca | 2010-01-21 | 1 | -3/+5 |
| | |||||
* | svga: Follow buffer usage semantics properly. | José Fonseca | 2010-01-21 | 2 | -4/+11 |
| | | | | | | | | | | It's necessary to download buffers from the host always, except if the buffer is undefined, because: - just PIPE_BUFFER_USAGE_CPU_WRITE doesn't guarantee all data is written -- old contents may still pierce through - PIPE_BUFFER_USAGE_DISCARD refers to a range, not the whole buffer, so unless we track which parts have been modified and not we still need to download the data. | ||||
* | llvmpipe: Remove unnecessary headers. | Vinson Lee | 2010-01-21 | 19 | -26/+0 |
| | |||||
* | svga: Remove unnecessary headers. | Vinson Lee | 2010-01-21 | 23 | -47/+0 |
| | |||||
* | softpipe: Remove unnecessary headers. | Vinson Lee | 2010-01-20 | 10 | -12/+0 |
| | |||||
* | i915g: Remove unnecessary headers. | Vinson Lee | 2010-01-19 | 9 | -17/+0 |
| | |||||
* | svga: Do a more propper creation of textures from handles | Jakob Bornecrantz | 2010-01-19 | 2 | -3/+71 |
| | |||||
* | st/drm: Expose kernel driver name | Jakob Bornecrantz | 2010-01-19 | 1 | -0/+1 |
| | | | | | | Based on patch by Chia-I Wu <[email protected]> Expose the name of the kernel driver as accepted by drmOpenByName. | ||||
* | softpipe: Fix vertex buffer memory leak. | José Fonseca | 2010-01-19 | 1 | -0/+2 |
| | |||||
* | softpipe: Skip depth testing for PIPE_S8_UNORM. | José Fonseca | 2010-01-18 | 1 | -1/+2 |
| | |||||
* | svga: Ensure buffer size/alignment is not zero. | José Fonseca | 2010-01-18 | 2 | -3/+6 |
| | |||||
* | svga: Fix compile_vs error code. | José Fonseca | 2010-01-13 | 2 | -3/+7 |
| | | | | | | It could erroneously return PIPE_OK in some circumstances. Make compile_fs code identical. | ||||
* | r300g: Silence unused variable warnings. | Vinson Lee | 2010-01-08 | 2 | -1/+2 |
| | |||||
* | svga: Silence uninitialized variable warning. | Vinson Lee | 2010-01-06 | 1 | -1/+1 |
| | |||||
* | nv50: add missing parentheses in nv50_query_result() | Roel Kluin | 2010-01-06 | 1 | -1/+1 |
| | | | | | | | | NOUVEAU_BO_RD is defined (1 << 2), and `|' has higher precedence than `?' so the second argument of nouveau_bo_map was always 0. Signed-off-by: Roel Kluin <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | svga: Remove stale references to delete shader results. | José Fonseca | 2010-01-05 | 2 | -0/+14 |
| | | | | | To ensure that a new result that happens to have the same address of the old one will be detected as a change. | ||||
* | svga: Rebind shaders when tokens change. | José Fonseca | 2010-01-05 | 3 | -18/+10 |
| | | | | | | | | | | Even shader ID doesn't change. Otherwise the token change is not effective. This reverts regression from commit cdb445f3a9285e2d8f042a07021ade78b94e0156. Regression could be seen in Quake3's loading screen -- the upper right corner of the screen would be black. | ||||
* | svga: Fix debug build crash when rendering to depth/stencil renderbuffer only. | Michel Dänzer | 2010-01-04 | 1 | -1/+2 |
| | |||||
* | r300g: Silence 'mixed declarations and code' warning. | Vinson Lee | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | r300g: Remove comma at end of enumerator list. | Vinson Lee | 2010-01-03 | 1 | -8/+8 |
| | |||||
* | llvmpipe: Remove comma at end of enumerator list. | Vinson Lee | 2010-01-03 | 2 | -2/+2 |
| | |||||
* | trace: Remove comma at end of enumerator list. | Vinson Lee | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | r300g: Use C-style comments. | Vinson Lee | 2010-01-02 | 1 | -2/+2 |
| | |||||
* | svga: Use a shader id as low as possible. | José Fonseca | 2010-01-03 | 7 | -24/+78 |
| | |||||
* | svga: Rename error labels. | José Fonseca | 2010-01-03 | 1 | -14/+14 |
| | | | | Make it easier to insert/remove error branches. | ||||
* | llvmpipe: Silence uninitialized variable warning. | Vinson Lee | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | llvmpipe: Use C-style comment. | Vinson Lee | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | llvmpipe: Fix assert. | Vinson Lee | 2009-12-28 | 1 | -1/+1 |
| | |||||
* | llvmpipe: Silence compiler warnings. | Vinson Lee | 2009-12-28 | 2 | -2/+7 |
| | |||||
* | llvmpipe: Silence compiler warnings. | Vinson Lee | 2009-12-28 | 6 | -4/+6 |
| | |||||
* | trace: Silence unused variable warnings. | Vinson Lee | 2009-12-27 | 1 | -0/+2 |
| | |||||
* | i915g: Silence unused variable warning. | Vinson Lee | 2009-12-27 | 1 | -0/+1 |
| | |||||
* | softpipe: Silence unintialized variable warnings. | Vinson Lee | 2009-12-27 | 1 | -1/+1 |
| | |||||
* | softpipe: Silence unused variable warning. | Vinson Lee | 2009-12-27 | 1 | -0/+1 |
| | |||||
* | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | 2009-12-27 | 3 | -7/+7 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 | ||||
| * | trace: Silence uninitialized variable warnings. | Vinson Lee | 2009-12-22 | 1 | -2/+2 |
| | | |||||
| * | trace: Add PIPE_OS_APPLE. | Vinson Lee | 2009-12-22 | 2 | -3/+3 |
| | | |||||
| * | i915g: Use C-style comment. | Vinson Lee | 2009-12-22 | 1 | -2/+4 |
| | | |||||
| * | softpipe: Initialize source in blend_quad. | Vinson Lee | 2009-12-12 | 1 | -1/+2 |
| | | |||||
| * | i915g: Fix memory leak when pci id is unknown. | Vinson Lee | 2009-12-08 | 1 | -0/+1 |
| | | |||||
| * | i915g: Add missing break statement in i915_debug_packet. | Vinson Lee | 2009-12-08 | 1 | -0/+1 |
| | | |||||
* | | svga: Add a missing dependency from the prescale state. | José Fonseca | 2009-12-11 | 1 | -1/+2 |
| | | | | | | | | | | | | Thanks for Keith to finding this. Fixes Jedi Knight 2 menus. | ||||
* | | svga: Always pass SVGA3D_SURFACE_HINT_DYNAMIC. | José Fonseca | 2009-12-11 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | Since we're reusing buffers we're effectively transforming all of them into dynamic buffers. It would be nice to not cache long lived static buffers. But there is no way to detect the long lived from short lived ones yet. A good heuristic would be buffer size. | ||||
* | | svga: Keep tight control of texture handle ownership. | José Fonseca | 2009-12-11 | 2 | -17/+27 |
| | | | | | | | | | | | | | | | | | | | | The texture owns the surface handle. All derivatives need to keep a reference to texture. This fixes several assertions failures starting up Jedi Knight 2. Should cause no change for DRM surface sharing -- reference count still done as before there. | ||||
* | | svga: Fix mixed signed comparisons. | José Fonseca | 2009-12-11 | 1 | -1/+1 |
| | |