diff options
author | Christian König <[email protected]> | 2010-12-16 16:42:14 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-01-12 19:44:49 +0100 |
commit | c60cb25bfb15fc83e78d9f2c74646dcc5ad07792 (patch) | |
tree | 137a78573ff7a73928c4709064ade84d52534765 /src/gallium/drivers/r600/r700_asm.c | |
parent | 7728bef29097c8406d35c6dd969544382abdf935 (diff) |
r600g: implement output modifiers and use them to further optimize LRP
Diffstat (limited to 'src/gallium/drivers/r600/r700_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r700_asm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r700_asm.c b/src/gallium/drivers/r600/r700_asm.c index 892dee86baf..3eb6fb50ca7 100644 --- a/src/gallium/drivers/r600/r700_asm.c +++ b/src/gallium/drivers/r600/r700_asm.c @@ -61,6 +61,7 @@ int r700_bc_alu_build(struct r600_bc *bc, struct r600_bc_alu *alu, unsigned id) S_SQ_ALU_WORD1_OP2_SRC0_ABS(alu->src[0].abs) | S_SQ_ALU_WORD1_OP2_SRC1_ABS(alu->src[1].abs) | S_SQ_ALU_WORD1_OP2_WRITE_MASK(alu->dst.write) | + S_SQ_ALU_WORD1_OP2_OMOD(alu->omod) | S_SQ_ALU_WORD1_OP2_ALU_INST(alu->inst) | S_SQ_ALU_WORD1_BANK_SWIZZLE(alu->bank_swizzle) | S_SQ_ALU_WORD1_OP2_UPDATE_EXECUTE_MASK(alu->predicate) | |