aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2021-01-08 22:55:55 -0300
committerGitHub <noreply@github.com>2021-01-08 22:55:55 -0300
commitb9200dd734d4201ec9d8e07e203152d32392a69e (patch)
treea4fbf2e58d246601583e894a8f150124b32eecff /Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs
parenta9cb31e75fe269519f6be71ae83627ee21d1bc1f (diff)
Support conditional on BRK and SYNC shader instructions (#1878)
* Support conditional on BRK and SYNC shader instructions * Add TODO comment and bump cache version
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs
index f6c3e4f4..31804870 100644
--- a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs
+++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranchPop.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Ryujinx.Graphics.Shader.Decoders
{
- class OpCodeBranchPop : OpCode
+ class OpCodeBranchPop : OpCodeConditional
{
public Dictionary<OpCodePush, int> Targets { get; }