r300: Corrected texcoord start when BFC1 is enabled.
authorTommy Schultz Lassen <mesa3d@krynn.dk>
Wed, 18 Jul 2007 00:37:43 +0000 (00:37 +0000)
committerOliver McFadden <z3ro.geek@gmail.com>
Wed, 18 Jul 2007 00:37:43 +0000 (00:37 +0000)
src/mesa/drivers/dri/r300/r300_vertprog.c

index 0fb6110..4f36e81 100644 (file)
@@ -1073,7 +1073,7 @@ static void t_inputs_outputs(struct r300_vertex_program *vp)
        if (vp->key.OutputsWritten & (1 << VERT_RESULT_BFC1)) {
                vp->outputs[VERT_RESULT_BFC1] =
                    vp->outputs[VERT_RESULT_COL0] + 3;
-               cur_reg = vp->outputs[VERT_RESULT_BFC1] + 1;
+               cur_reg = vp->outputs[VERT_RESULT_BFC1] + 2;
        }
 #if 0
        if (vp->key.OutputsWritten & (1 << VERT_RESULT_FOGC)) {