Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-07-26 | cell: comment-out unused fields, functions | Brian Paul | |
2010-07-26 | cell: make functions static | Brian Paul | |
2010-07-26 | cell: fix segfault when freeing samplers | Brian Paul | |
2010-07-26 | cell: comment-out unneeded padding field | Brian Paul | |
2010-07-26 | cell: added const qualifier | Brian Paul | |
2010-07-26 | r600g: implememt the LIT instruction | Stephan Schmid | |
2010-07-26 | r300g: fix macro substitution problem | Dave Airlie | |
isn't a problem yet, but have issues in hiz branch. Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-07-25 | r300g: implement D24X8 texture sampling for r3xx-r4xx | Marek Olšák | |
Because the hw can't sample it, I reinterpret the format as G16R16 and sample the G component. This gives 16 bits of precision, which should be enough for depth texturing (surprisingly, the sampled values are exactly the same as in D16 textures). This also enables EXT_packed_depth_stencil on those old chipsets, finally. | |||
2010-07-25 | r300g: make sure a texture is large enough for the CBZB clear | Marek Olšák | |
The number of macrotiles in the Y direction must be even, otherwise memory corruption may happen (e.g. broken fonts). Basically, if we get a buffer in resource_from_handle, we can determine from the buffer size whether it's safe to use the CBZB clear or not. | |||
2010-07-25 | r300g: do not use TXPITCH_EN if the width is POT and the height is NPOT | Marek Olšák | |
2010-07-25 | r300g: do not use TXPITCH_EN for power-of-two textures from the DDX | Marek Olšák | |
We were using TXPITCH_EN for textures from the DDX since ever, for nothing. | |||
2010-07-25 | r300g: cleanup texture creation code | Marek Olšák | |
This decouples initializing a texture layout/miptree description from an actual texture creation, it also partially unifies texture_create and texture_from_handle. r300_texture inherits r300_texture_desc, which inherits u_resource. The CBZB clear criteria are moved to r300_texture_desc::cbzb_allowed[level]. And other minor cleanups. | |||
2010-07-25 | r300g: reject resources from handles which are not large enough | Marek Olšák | |
The driver gets a buffer and its size in resource_from_handle. It computes the required minimum buffer size from given texture properties, and compares the two sizes. This is to early detect DDX bugs. | |||
2010-07-25 | r300g: cleanup texture debug logging | Marek Olšák | |
2010-07-25 | r300g: do not align texture height to 2^n for 1D and 2D non-mipmapped textures | Marek Olšák | |
I don't remember why the alignment was there, but it seems to be no longer needed. I guess it was a dirty fix for some other bug. | |||
2010-07-24 | nvfx: Move declaration before code. | Vinson Lee | |
2010-07-23 | r600g: first pass at texture support | Jerome Glisse | |
This add texture support to the assembler, generated code is wrong (tested against working dump). Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-23 | r600g: Fix SCons build. | Vinson Lee | |
2010-07-23 | r600g: fix dp2, dp3, dp4 tokens | Jerome Glisse | |
We need to make sure dp are all mirror accross the alu unit. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-23 | r600g: add RSQ token support | Jerome Glisse | |
Could serve as an example on how to add more token support. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-23 | r600g: drop compiler stuff and switch over dumb tgsi assembler | Jerome Glisse | |
Writing a compiler is time consuming and error prone in order to allow r600g to further progress in the meantime i wrote a simple tgsi assembler, it does stupid thing but i would rather keep the code simple than having people trying to optimize code it does. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-23 | softpipe: Check for NULL pointer in sp_destroy_tile_cache(). | Michal Krol | |
2010-07-23 | softpipe: Check for NULL pointer in sp_destroy_tex_tile_cache(). | Michal Krol | |
2010-07-23 | nv50: implement depth clamp | Christoph Bumiller | |
2010-07-22 | llvmpipe: Partially fix resource texture from_handle | Jakob Bornecrantz | |
2010-07-22 | llvmpipe: Don't align values already aligned | Jakob Bornecrantz | |
2010-07-22 | i915g: Set total_nblocksy in from_handle | Jakob Bornecrantz | |
2010-07-22 | i915g: Add some debug prints in texture code | Jakob Bornecrantz | |
2010-07-22 | i915g: Ifdef out debug code on non-debug builds | Jakob Bornecrantz | |
2010-07-21 | softpipe: add missing support for PIPE_FORMAT_S8_USCALED surfaces | Brian Paul | |
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. | |||
2010-07-21 | softpipe: fix sp_tile_cache_flush_clear() regression | Brian Paul | |
2010-07-21 | r600g: add support for all R6XX/R7XX asic | Jerome Glisse | |
This configure some of the value properly based on asic so others asic than RV710 works too. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-21 | r600g: add r600 compile mode to compiler. | Dave Airlie | |
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. | |||
2010-07-21 | r600g: add family retrival | Dave Airlie | |
allow pipe driver to get the family of the gpu. | |||
2010-07-21 | llvmpipe: say no to depth clamp | Marek Olšák | |
The other drivers just return 0 without the assert. | |||
2010-07-21 | r300g: implement depth clamp | Marek Olšák | |
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. | |||
2010-07-21 | r300g: cleanup clip state emission | Marek Olšák | |
2010-07-21 | nouveau/nvfx: Add new PIPE_CAP values | Patrice Mandin | |
Signed-off-by: Patrice Mandin <patmandin@gmail.com> | |||
2010-07-20 | r600g: split trans unit computation | Jerome Glisse | |
Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-07-20 | softpipe: Support non-depth-stencil formats in sp_tile_cache_flush_clear(). | Michal Krol | |
2010-07-19 | r300g: fix possible crash in destroy_context | Marek Olšák | |
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. | |||
2010-07-19 | r300g: fix typo | Marek Olšák | |
2010-07-19 | r300g: use memory pools for buffer_create and get_transfer | Marek Olšák | |
The improvement in Tremulous: 68.9 fps -> 71.1 fps. | |||
2010-07-18 | r300g: u_upload optimisation | Dave Airlie | |
fix vb/ib uploads | |||
2010-07-18 | llvmpipe: Remove dead initialization. | Vinson Lee | |
2010-07-17 | r300g: final fix for r3xx constant buffer emission | Marek Olšák | |
2010-07-17 | r300g: fix typo in r3xx constant buffer emission | Marek Olšák | |
Ooops. | |||
2010-07-17 | r300g: fix constant buffer emission on r3xx | Marek Olšák | |
FDO bug #29128. | |||
2010-07-17 | llvmpipe: Remove unused variable in lp_test_sincos. | Vinson Lee | |
2010-07-16 | nv50: s/__func__/__FUNCTION__/ | Vinson Lee | |