mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
nv50/ir: fix TXQ srcMask
src0.x is always read for the LOD, irrespective of which outputs are read. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Cc: mesa-stable@lists.freedesktop.org
This commit is contained in:
parent
054c54d1be
commit
934511d1f3
1 changed files with 2 additions and 0 deletions
|
|
@ -345,6 +345,8 @@ unsigned int Instruction::srcMask(unsigned int s) const
|
|||
}
|
||||
}
|
||||
return mask;
|
||||
case TGSI_OPCODE_TXQ:
|
||||
return 1;
|
||||
case TGSI_OPCODE_XPD:
|
||||
{
|
||||
unsigned int x = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue