diff options
author | Christian König <[email protected]> | 2010-12-16 22:23:48 +0100 |
---|---|---|
committer | Christian König <[email protected]> | 2011-01-12 00:06:48 +0100 |
commit | cc0f604241ee7b536f4c9867573024b8673b0998 (patch) | |
tree | 66462e23db8e2f8dfb76dc201ac8829895872e68 /src/gallium | |
parent | c00bc13564e432c496aa685d7b3ca7c60165be02 (diff) |
r600g: fix tex and vtx joining
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/r600/r600_asm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_asm.c b/src/gallium/drivers/r600/r600_asm.c index 326724520b3..1c138513f6a 100644 --- a/src/gallium/drivers/r600/r600_asm.c +++ b/src/gallium/drivers/r600/r600_asm.c @@ -672,7 +672,7 @@ int r600_bc_add_vtx(struct r600_bc *bc, const struct r600_bc_vtx *vtx) /* each fetch use 4 dwords */ bc->cf_last->ndw += 4; bc->ndw += 4; - if ((bc->ndw / 4) > 7) + if ((bc->cf_last->ndw / 4) > 7) bc->force_add_cf = 1; return 0; } @@ -701,7 +701,7 @@ int r600_bc_add_tex(struct r600_bc *bc, const struct r600_bc_tex *tex) /* each texture fetch use 4 dwords */ bc->cf_last->ndw += 4; bc->ndw += 4; - if ((bc->ndw / 4) > 7) + if ((bc->cf_last->ndw / 4) > 7) bc->force_add_cf = 1; return 0; } |