From: Vadim Girlin Date: Sat, 21 Jan 2012 00:48:12 +0000 (+0400) Subject: r600g: make INTERP_LOAD_P0 vector-only X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b1471f8ca2933a5a4f55be9d0a4db83bdee0435;p=mesa.git r600g: make INTERP_LOAD_P0 vector-only Signed-off-by: Vadim Girlin Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index b8d43c0d928..107c864f2a5 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -478,6 +478,7 @@ static int is_alu_vec_unit_inst(struct r600_bytecode *bc, struct r600_bytecode_a is_alu_mova_inst(bc, alu) || (alu->inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT || alu->inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INST_FLT_TO_INT_FLOOR || + alu->inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INTERP_LOAD_P0 || alu->inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INTERP_XY || alu->inst == EG_V_SQ_ALU_WORD1_OP2_SQ_OP2_INTERP_ZW); }