mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 08:10:18 +00:00
Fix missing geometry shader passthrough inputs
This commit is contained in:
parent
c3c3914ed3
commit
36250137e3
1 changed files with 1 additions and 1 deletions
|
@ -490,7 +490,7 @@ namespace Ryujinx.Graphics.Shader.CodeGen.Glsl
|
|||
}
|
||||
else
|
||||
{
|
||||
int usedAttributes = context.Config.UsedInputAttributes;
|
||||
int usedAttributes = context.Config.UsedInputAttributes | context.Config.PassthroughAttributes;
|
||||
while (usedAttributes != 0)
|
||||
{
|
||||
int index = BitOperations.TrailingZeroCount(usedAttributes);
|
||||
|
|
Loading…
Reference in a new issue