summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2010-08-31 09:56:35 +1000
committerDave Airlie <airlied@redhat.com>2010-08-31 10:46:58 +1000
commit85e401d8bfd80450a31eac234e13008e33e64227 (patch)
tree396ef207e5cb1661ed1e608355a1a6028db9a37a /src
parent5ea238b7991331c854e66a16911d616d36965dc9 (diff)
r600g: fix LIT tests
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/r600/r600_shader.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_shader.c b/src/gallium/drivers/r600/r600_shader.c
index 4834eaa9de..2210f83283 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;