r600g: fix F2U opcode translation

Signed-off-by: Marek Olšák <maraeo@gmail.com>
This commit is contained in:
Dave Airlie 2012-08-04 13:39:30 +02:00 committed by Marek Olšák
parent 5bce0b5175
commit cd97a5f660

View file

@ -3424,7 +3424,7 @@ static int tgsi_f2i(struct r600_shader_ctx *ctx)
alu.src[0].sel = ctx->temp_reg;
alu.src[0].chan = i;
if (i == last_inst)
if (i == last_inst || alu.inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_UINT)
alu.last = 1;
r = r600_bytecode_add_alu(ctx->bc, &alu);
if (r)