From b9200dd734d4201ec9d8e07e203152d32392a69e Mon Sep 17 00:00:00 2001 From: gdkchan Date: Fri, 8 Jan 2021 22:55:55 -0300 Subject: Support conditional on BRK and SYNC shader instructions (#1878) * Support conditional on BRK and SYNC shader instructions * Add TODO comment and bump cache version --- Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs') diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs index 71cb9bca..9ca437b3 100644 --- a/Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs +++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeBranch.cs @@ -2,10 +2,8 @@ using Ryujinx.Graphics.Shader.Instructions; namespace Ryujinx.Graphics.Shader.Decoders { - class OpCodeBranch : OpCode + class OpCodeBranch : OpCodeConditional { - public Condition Condition { get; } - public int Offset { get; } public bool PushTarget { get; protected set; } @@ -14,8 +12,6 @@ namespace Ryujinx.Graphics.Shader.Decoders public OpCodeBranch(InstEmitter emitter, ulong address, long opCode) : base(emitter, address, opCode) { - Condition = (Condition)(opCode & 0x1f); - Offset = ((int)(opCode >> 20) << 8) >> 8; PushTarget = false; -- cgit v1.2.3