diff options
author | Dave Airlie <[email protected]> | 2010-09-19 17:14:57 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2010-09-19 17:20:15 +1000 |
commit | c5edfcc410bdf3dbe4f37418de8f0009746c9578 (patch) | |
tree | c48aeee618a4973010612f61d6aa653193c364f0 /src/gallium/drivers/r600/r600_asm.c | |
parent | 8861727c9190c35f7391ad848fefc6a401872007 (diff) |
r600g; add uses waterfall to asm cf for r6xx.
On r6xx if an MOVA instruction is emitted we should set this bit.
Diffstat (limited to 'src/gallium/drivers/r600/r600_asm.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 0d17f75da7e..93dc1420111 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -696,6 +696,7 @@ static int r600_bc_cf_build(struct r600_bc *bc, struct r600_bc_cf *cf) bc->bytecode[id++] = S_SQ_CF_ALU_WORD1_CF_INST(cf->inst >> 3) | S_SQ_CF_ALU_WORD1_BARRIER(1) | + S_SQ_CF_ALU_WORD1_USES_WATERFALL(cf->r6xx_uses_waterfall) | S_SQ_CF_ALU_WORD1_COUNT((cf->ndw / 2) - 1); break; case V_SQ_CF_WORD1_SQ_CF_INST_TEX: |