[Mesa-dev] [PATCH 1/2] r600g/llvm: fix sample cube shadow
Tom Stellard
tom at stellard.net
Wed May 22 14:57:36 PDT 2013
On Tue, May 21, 2013 at 04:34:51PM +0200, Vincent Lejeune wrote:
For the series:
Reviewed-by: Tom Stellard <thomas.stellard at amd.com>
> ---
> src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c b/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
> index 3f7e79f..f49170d 100644
> --- a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
> +++ b/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
> @@ -654,7 +654,8 @@ void radeon_llvm_emit_prepare_cube_coords(
> opcode == TGSI_OPCODE_TXB2 ||
> opcode == TGSI_OPCODE_TXL2) {
> coords[3] = coords_arg[4];
> - } else if (opcode == TGSI_OPCODE_TXB ||
> + } else if (opcode == TGSI_OPCODE_TEX ||
> + opcode == TGSI_OPCODE_TXB ||
> opcode == TGSI_OPCODE_TXL) {
> coords[3] = coords_arg[3];
> }
> --
> 1.8.2.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev
More information about the mesa-dev
mailing list