Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-10-24 | r300g: fix texture border for 16-bits-per-channel formats | Marek Olšák | |
This is kinda hacky, but it's hard to come up with a generic solution for all formats when only a few are used in practice (I mostly get B8G8R8*8). | |||
2010-10-24 | r600g: drop more common state handling code | Dave Airlie | |
2010-10-24 | r600g: Also clear bc data when we're destroying a shader. | Tilman Sauerbeck | |
[airlied: remove unused vars] Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de> Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-10-24 | r600g: Added r600_pipe_shader_destroy(). | Tilman Sauerbeck | |
Not yet complete. Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de> Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-10-24 | r600g: merge more of the common r600/evergreen state handling | Dave Airlie | |
2010-10-24 | r600g: Fixed r600_vertex_element leak. | Tilman Sauerbeck | |
Signed-off-by: Tilman Sauerbeck <tilman@code-monkey.de> Signed-off-by: Dave Airlie <airlied@redhat.com> | |||
2010-10-23 | softpipe: remove >32bpp color restriction | Brian Paul | |
The comment was out of date. The tile cache does handle >32-bit colors. | |||
2010-10-23 | softpipe: added some texture sample debug code (disabled) | Brian Paul | |
2010-10-22 | r300g: say no to PIPE_CAP_STREAM_OUTPUT and PIPE_CAP_PRIMITIVE_RESTART | Marek Olšák | |
2010-10-22 | r300g: do not print get_param errors in non-debug build | Marek Olšák | |
2010-10-22 | galahad: silence warnings | Brian Paul | |
2010-10-21 | llvmpipe: enable primitive restart | Brian Paul | |
2010-10-21 | softpipe: enable primitive restart | Brian Paul | |
2010-10-21 | r600g: start splitting out common code from eg/r600. | Dave Airlie | |
no point duplicating code that doesn't touch hw, also make it easier to spot mistakes | |||
2010-10-21 | r600g: initial translate state support | Dave Airlie | |
2010-10-21 | llvmpipe: Remove unnecessary header. | Vinson Lee | |
2010-10-21 | r600g: add texture tiling enable under a debug option. | Dave Airlie | |
At the moment you need kernel patches to have texture tiling work with the kernel CS checker, so once they are upstream and the drm version is bumped we can make this enable flip the other way most likely. | |||
2010-10-21 | r600g: add texture tiling alignment support. | Dave Airlie | |
this sets things up to align stride/height with tile sizes, it also adds support for the 2D/1D array mode cross over point. | |||
2010-10-21 | r600g: introduce a per-driver resource flag for transfers. | Dave Airlie | |
this is to be used to decide not to tile a surface being used for transfers. | |||
2010-10-21 | r600g: add r600 surface to store the aligned height. | Dave Airlie | |
we need to know the aligned height when binding the surface to cb/zb, not the gallium surface height. | |||
2010-10-21 | r600g: start adding hooks for aligning width/height for tiles. | Dave Airlie | |
2010-10-21 | r600g: move to per-miplevel array mode. | Dave Airlie | |
Since the hw transitions from 2D->1D sampling below the 2D macrotile size we need to keep track of the array mode per level so we can render to it using the CB. | |||
2010-10-21 | r600g: all non-0 mipmap levels need to be w/h aligned to POT. | Dave Airlie | |
this adds a new minify function to the driver to ensure this. | |||
2010-10-20 | llvmpipe/draw: always enable LLVMAddInstructionCombiningPass() | Brian Paul | |
We were working around an LLVM 2.5 bug but we're using LLVM 2.6 or later now. This basically reverts commit baddcbc5225e12052b3bc8c07a8b65243d76574d. This fixes the piglit bug/tri-tex-crash.c failure. | |||
2010-10-20 | r600g: Ensure r600_src is initialized in tgsi_exp function. | Vinson Lee | |
Silences these GCC warnings. r600_shader.c: In function 'tgsi_exp': r600_shader.c:2339: warning: 'r600_src[0].rel' is used uninitialized in this function r600_shader.c:2339: warning: 'r600_src[0].abs' is used uninitialized in this function r600_shader.c:2339: warning: 'r600_src[0].neg' is used uninitialized in this function r600_shader.c:2339: warning: 'r600_src[0].chan' is used uninitialized in this function r600_shader.c:2339: warning: 'r600_src[0].sel' is used uninitialized in this function | |||
2010-10-19 | llvmpipe: Initialize variable. | Vinson Lee | |
2010-10-19 | llvmpipe: Initialize state variable in debug_bin function. | Vinson Lee | |
2010-10-18 | r300g: Add new debug option for logging vertex/fragment program stats | Tom Stellard | |
2010-10-18 | llvmpipe: Don't test rounding of x.5 numbers. | José Fonseca | |
SSE4.1 has different rules, and so far this doesn't seem to cause any problems with conformance test suites. | |||
2010-10-18 | llvmpipe: remove lp_setup_coef*.c files from Makefile | Brian Paul | |
2010-10-18 | r600g: retrieve tiling info from kernel for shared buffers. | Dave Airlie | |
we need to know if the back is tiled so we can blit from it properly. | |||
2010-10-18 | r600g: fix transfer function for tiling. | Dave Airlie | |
this makes readback with tiled back work better. | |||
2010-10-18 | r600g: attempt to cleanup depth blit | Dave Airlie | |
cleanup what I'm nearly sure is unnecessary work in the depth blit code. | |||
2010-10-18 | r600g: depth needs to bound to ds | Dave Airlie | |
2010-10-18 | r600g: fix typo in tiling setup cb code. | Dave Airlie | |
2010-10-18 | r600g: do proper tracking of views/samplers. | Dave Airlie | |
we need to do pretty much what r300g does in for this, this fixes some issues seen while working on tiling. | |||
2010-10-17 | llvmpipe: remove unused arg from jit_setup_tri function | Keith Whitwell | |
2010-10-17 | llvmpipe: remove unused file | Keith Whitwell | |
2010-10-17 | Merge remote branch 'origin/master' into lp-setup-llvm | Keith Whitwell | |
Conflicts: src/gallium/drivers/llvmpipe/lp_setup_coef.c src/gallium/drivers/llvmpipe/lp_setup_coef.h src/gallium/drivers/llvmpipe/lp_setup_coef_intrin.c src/gallium/drivers/llvmpipe/lp_setup_point.c src/gallium/drivers/llvmpipe/lp_setup_tri.c src/gallium/drivers/llvmpipe/lp_state_derived.c src/gallium/drivers/llvmpipe/lp_state_fs.h | |||
2010-10-17 | llvmpipe: fail cleanly on malloc failure in lp_setup_alloc_triangle | Keith Whitwell | |
2010-10-17 | llvmpipe: remove setup fallback path | Keith Whitwell | |
2010-10-18 | r600g: set tiling bits in hw state | Dave Airlie | |
2010-10-18 | r600g: get tiling info from kernel | Dave Airlie | |
2010-10-18 | r600g: add defines for tiling | Dave Airlie | |
2010-10-18 | r600g: switch to a common formats.h file since they are in different regs | Dave Airlie | |
2010-10-17 | llvmpipe: Return non-zero exit code for lp_test_round failures. | Vinson Lee | |
2010-10-17 | llvmpipe: Initialize bld ctx via lp_build_context_init instead of ad-hoc and ↵ | José Fonseca | |
broken code. | |||
2010-10-17 | llvmpipe: Fix bad refactoring. | José Fonseca | |
'i' and 'chan' have random values here, which could cause a buffer overflow in debug builds, if chan > 4. | |||
2010-10-17 | llvmpipe: Ensure z_shift and z_width is initialized. | José Fonseca | |
2010-10-17 | llvmpipe: Fix depth-stencil regression. | José Fonseca | |
If stencil is enabled then we need to load the z_dst, even if depth testing is disabled. This fixes reflect mesa demo. |