diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-03-06 16:42:13 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-06 20:42:13 +0100 |
commit | 0bcbe32367eeada2a5aa7e6bb2edccc22cababa3 (patch) | |
tree | 08b9ac95b8db21a5f505493fdf099c7d80da0c4a /Ryujinx.Graphics.Shader/Decoders/Decoder.cs | |
parent | b97ff4da5eb67b68400fa1c187524f53407dbb71 (diff) |
Only initialize shader outputs that are actually used on the next stage (#3054)1.1.61
* Only initialize shader outputs that are actually used on the next stage
* Shader cache version bump
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/Decoder.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/Decoder.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/Decoder.cs b/Ryujinx.Graphics.Shader/Decoders/Decoder.cs index 8820527f..6fa4055a 100644 --- a/Ryujinx.Graphics.Shader/Decoders/Decoder.cs +++ b/Ryujinx.Graphics.Shader/Decoders/Decoder.cs @@ -308,7 +308,8 @@ namespace Ryujinx.Graphics.Shader.Decoders int attr = offset + elemIndex * 4; if (attr >= AttributeConsts.UserAttributeBase && attr < AttributeConsts.UserAttributeEnd) { - int index = (attr - AttributeConsts.UserAttributeBase) / 16; + int userAttr = attr - AttributeConsts.UserAttributeBase; + int index = userAttr / 16; if (isStore) { @@ -316,7 +317,7 @@ namespace Ryujinx.Graphics.Shader.Decoders } else { - config.SetInputUserAttribute(index, perPatch); + config.SetInputUserAttribute(index, (userAttr >> 2) & 3, perPatch); } } |