r600g: fix tex and vtx joining
authorChristian König <deathsimple@vodafone.de>
Thu, 16 Dec 2010 21:23:48 +0000 (22:23 +0100)
committerChristian König <deathsimple@vodafone.de>
Tue, 11 Jan 2011 23:06:48 +0000 (00:06 +0100)
src/gallium/drivers/r600/r600_asm.c

index 326724520b3ca33831eb6d76932000b6cb98862c..1c138513f6ab1292e6c32402291562dfe3ab1ed6 100644 (file)
@@ -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;
 }