mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
gallium: compare the actual register, not all the inputs
otherwise we decrement indexes for all registers
This commit is contained in:
parent
cff2126f52
commit
1c1307e7c5
1 changed files with 1 additions and 1 deletions
|
|
@ -139,7 +139,7 @@ find_translated_vp(struct st_context *st,
|
|||
if (fragInputsRead & (1 << inAttr)) {
|
||||
stfp->input_to_slot[inAttr] = numIn;
|
||||
numIn++;
|
||||
if ((fragInputsRead & FRAG_BIT_FOGC)) {
|
||||
if (((1 << inAttr) & FRAG_BIT_FOGC)) {
|
||||
/* leave placeholders for the
|
||||
* extra registers we extract from fog */
|
||||
if (stfp->Base.UsesFrontFacing) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue