summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers
Commit message (Collapse)AuthorAgeFilesLines
* nv50: change back accidentally swapped UNORM,SNORM vertex typeChristoph Bumiller2010-07-241-6/+6
|
* nv50: don't produce MOV immediate to output reg in store optChristoph Bumiller2010-07-242-10/+14
|
* nv50: introduce the big formats tableChristoph Bumiller2010-07-2410-272/+486
|
* nouveau: update nouveau_class.hChristoph Bumiller2010-07-243-84/+1159
| | | | Adds nvc0, new vertex formats, and dual source blending values.
* nv50: import new compilerChristoph Bumiller2010-07-2315-4687/+6485
|
* softpipe: Check for NULL pointer in sp_destroy_tile_cache().Michal Krol2010-07-231-8/+10
|
* softpipe: Check for NULL pointer in sp_destroy_tex_tile_cache().Michal Krol2010-07-231-11/+13
|
* nv50: implement depth clampChristoph Bumiller2010-07-234-10/+33
|
* llvmpipe: Partially fix resource texture from_handleJakob Bornecrantz2010-07-221-1/+35
|
* llvmpipe: Don't align values already alignedJakob Bornecrantz2010-07-221-2/+2
|
* i915g: Set total_nblocksy in from_handleJakob Bornecrantz2010-07-221-0/+1
|
* i915g: Add some debug prints in texture codeJakob Bornecrantz2010-07-221-6/+10
|
* i915g: Ifdef out debug code on non-debug buildsJakob Bornecrantz2010-07-221-0/+5
|
* softpipe: add missing support for PIPE_FORMAT_S8_USCALED surfacesBrian Paul2010-07-211-20/+20
| | | | | | And remove checks of surface depth bits. The state tracker should not turn on depth/stencil testing if the framebuffer doesn't have depth/stencil.
* softpipe: fix sp_tile_cache_flush_clear() regressionBrian Paul2010-07-211-5/+11
|
* r600g: add support for all R6XX/R7XX asicJerome Glisse2010-07-214-87/+316
| | | | | | | This configure some of the value properly based on asic so others asic than RV710 works too. Signed-off-by: Jerome Glisse <[email protected]>
* r600g: add r600 compile mode to compiler.Dave Airlie2010-07-214-13/+106
| | | | | | some of the ALU instructions are different on r6xx vs r7xx, separate the alu translation to separate files, and use family to pick which compile stage to use.
* r600g: add family retrivalDave Airlie2010-07-212-1/+9
| | | | allow pipe driver to get the family of the gpu.
* llvmpipe: say no to depth clampMarek Olšák2010-07-211-0/+2
| | | | The other drivers just return 0 without the assert.
* r300g: implement depth clampMarek Olšák2010-07-212-1/+3
| | | | | | | Depth clamping seems to be implicit if clipping is disabled. It's not perfect, but it's good enough for wine and passes the corresponding piglit tests.
* r300g: cleanup clip state emissionMarek Olšák2010-07-211-6/+10
|
* nouveau/nvfx: Add new PIPE_CAP valuesPatrice Mandin2010-07-211-0/+4
| | | | Signed-off-by: Patrice Mandin <[email protected]>
* r600g: split trans unit computationJerome Glisse2010-07-202-7/+23
| | | | Signed-off-by: Jerome Glisse <[email protected]>
* softpipe: Support non-depth-stencil formats in sp_tile_cache_flush_clear().Michal Krol2010-07-201-2/+7
|
* r300g: fix possible crash in destroy_contextMarek Olšák2010-07-191-2/+2
| | | | | | | | | The problem is destroy_context is almost NEVER called. The only test for destroy_context I know is compiz. Reported by Vinson Lee. FDO bug #29150.
* r300g: fix typoMarek Olšák2010-07-191-1/+1
|
* r300g: use memory pools for buffer_create and get_transferMarek Olšák2010-07-195-24/+101
| | | | The improvement in Tremulous: 68.9 fps -> 71.1 fps.
* r300g: u_upload optimisationDave Airlie2010-07-184-7/+15
| | | | fix vb/ib uploads
* llvmpipe: Remove dead initialization.Vinson Lee2010-07-181-1/+1
|
* r300g: final fix for r3xx constant buffer emissionMarek Olšák2010-07-171-1/+1
|
* r300g: fix typo in r3xx constant buffer emissionMarek Olšák2010-07-171-1/+1
| | | | Ooops.
* r300g: fix constant buffer emission on r3xxMarek Olšák2010-07-171-1/+1
| | | | FDO bug #29128.
* llvmpipe: Remove unused variable in lp_test_sincos.Vinson Lee2010-07-171-2/+0
|
* nv50: s/__func__/__FUNCTION__/Vinson Lee2010-07-161-1/+1
|
* nouveau: s/__func__/__FUNCTION__/Vinson Lee2010-07-161-1/+1
|
* nouveau: s/snprintf/util_snprintf/Vinson Lee2010-07-161-1/+2
|
* r300g: Remove unnecessary header.Vinson Lee2010-07-161-1/+0
|
* nouveau: s/inline/INLINE/Vinson Lee2010-07-163-5/+5
|
* r300g: inline winsys_buffer_destroyMarek Olšák2010-07-161-12/+4
|
* r300g: do not make copies of constant buffers, emit them directlyMarek Olšák2010-07-165-35/+27
|
* llvmpipe: use single swizzled tileKeith Whitwell2010-07-167-100/+148
| | | | | | | | | | | | | Use a single swizzled tile per colorbuf (and per thread) to avoid accumulating large amounts of cached swizzled data. Now that the SSE3 code has been merged to master, the performance delta of this change is minimal, the main benefit is reduced memory usage due to no longer keeping swizzled copies of render targets. It's clear from the performance of the in-place version of this code that there is still quite a bit of time being spent swizzling & unswizzling, but it's not clear exactly how to reduce that.
* llvmpipe: Describe _mm_shuffle_epi8() with gcc extended inline assembly when ↵José Fonseca2010-07-161-3/+30
| | | | -mssse3 is not supported/enabled.
* llvmpipe: Only use -mssse3 on gcc 4.3+José Fonseca2010-07-161-1/+5
|
* i965g: Remove dead initialization in precalc_tex.Vinson Lee2010-07-161-1/+1
|
* r300g: rebuild winsys and command submission to support multiple contextsMarek Olšák2010-07-1616-299/+389
|
* llvmpipe: implement instanced drawing functionsBrian Paul2010-07-151-20/+108
| | | | | And express all the other drawing functions in terms of llvmpipe_draw_range_elements_instanced().
* softpipe: re-order drawing functions to get rid of prototypeBrian Paul2010-07-151-108/+102
|
* llvmpipe: Remove redundant statement.José Fonseca2010-07-151-1/+0
| | | | Thanks to Vinson for spotting this.
* llvmpipe: delete lp_test_*.o files with make cleanBrian Paul2010-07-141-0/+3
|
* llvmpipe: Remove redundant alignments.José Fonseca2010-07-142-3/+1
| | | | | | | The lp_rast_shader_inputs' alignment is irrelevant now that it contains pointers instead of actual data. Likewise, lp_rast_triangle's size alignment is meaningless.