aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/IntermediateRepresentation
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-12-05 09:25:05 -0300
committerGitHub <noreply@github.com>2021-12-05 13:25:05 +0100
commitacc0b0f3138b0ea4d573db5152927026c29bd61d (patch)
tree2573dc9e8bdf548ee873c913c04dc65e901d18b2 /Ryujinx.Graphics.Shader/IntermediateRepresentation
parent2ab777885b174edb554ef3df7737f112b82e8b5d (diff)
Fix FLO.SH shader instruction with a input of 0 (#2876)
* Fix FLO.SH shader instruction with a input of 0 * Shader cache version bump
Diffstat (limited to 'Ryujinx.Graphics.Shader/IntermediateRepresentation')
-rw-r--r--Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs b/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
index c3fb2882..9a2c844d 100644
--- a/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
+++ b/Ryujinx.Graphics.Shader/IntermediateRepresentation/Instruction.cs
@@ -68,8 +68,9 @@ namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
ExponentB2,
FSIBegin,
FSIEnd,
- FindFirstSetS32,
- FindFirstSetU32,
+ FindLSB,
+ FindMSBS32,
+ FindMSBU32,
Floor,
FusedMultiplyAdd,
GroupMemoryBarrier,