mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 12:50:46 -07:00
Fix missing geometry shader passthrough inputs (#3106)
* Fix missing geometry shader passthrough inputs * Shader cache version bump
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user