mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
r300: Corrected texcoord start when BFC1 is enabled.
This commit is contained in:
parent
7b410f366f
commit
fb4e071bed
1 changed files with 1 additions and 1 deletions
|
|
@ -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)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue