From: Dave Airlie Date: Mon, 30 Aug 2010 23:56:35 +0000 (+1000) Subject: r600g: fix LIT tests X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85e401d8bfd80450a31eac234e13008e33e64227;p=mesa.git r600g: fix LIT tests --- diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c index 4834eaa9de7..2210f83283c 100644 --- a/src/gallium/drivers/r600/r600_shader.c +++ b/src/gallium/drivers/r600/r600_shader.c @@ -987,7 +987,7 @@ static int tgsi_lit(struct r600_shader_ctx *ctx) if (r) return r; alu.src[1].sel = V_SQ_ALU_SRC_0; /*0.0*/ - alu.src[1].chan = tgsi_chan(&inst->Src[0], 0); + alu.src[1].chan = 0; r = tgsi_dst(ctx, &inst->Dst[0], 1, &alu.dst); if (r) return r; @@ -1033,7 +1033,7 @@ static int tgsi_lit(struct r600_shader_ctx *ctx) r = tgsi_src(ctx, &inst->Src[0], &alu.src[0]); if (r) return r; - alu.src[0].chan = tgsi_chan(&inst->Src[0], 1); + alu.src[0].chan = tgsi_chan(&inst->Src[0], 3); r = tgsi_dst(ctx, &inst->Dst[0], 2, &alu.dst); if (r) return r; @@ -1045,6 +1045,7 @@ static int tgsi_lit(struct r600_shader_ctx *ctx) r = r600_bc_add_literal(ctx->bc, ctx->value); if (r) return r; + chan = alu.dst.chan; sel = alu.dst.sel;