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>
Thu, 16 Dec 2010 21:23:48 +0000 (22:23 +0100)
src/gallium/drivers/r600/r600_asm.c

index 4b84fa6050a7e578606f7d4385c5dfb1ce5076f0..17045011f45dfb84a32ea97c1312c526e67a8899 100644 (file)
@@ -550,7 +550,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;
 }
@@ -579,7 +579,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;
 }