aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2023-01-21 12:18:05 -0300
committerGitHub <noreply@github.com>2023-01-21 12:18:05 -0300
commit6adf15e479b684cad7a783e7a1a056be087fdc02 (patch)
tree857c8b14af4e49c2aa939b1496d7f53f304247bb /Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
parent2747f125918951673b298964889276ded5de935d (diff)
Implement CSET and CSETP shader instructions (#4318)1.1.583
* Implement CSET and CSETP shader instructions * Shader cache version bump * Fix CC.HI
Diffstat (limited to 'Ryujinx.Graphics.Shader/Instructions/InstEmit.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Instructions/InstEmit.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
index c242963a..3a9e658a 100644
--- a/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
+++ b/Ryujinx.Graphics.Shader/Instructions/InstEmit.cs
@@ -54,13 +54,6 @@ namespace Ryujinx.Graphics.Shader.Instructions
context.Config.GpuAccessor.Log("Shader instruction Cctlt is not implemented.");
}
- public static void Cset(EmitterContext context)
- {
- InstCset op = context.GetOp<InstCset>();
-
- context.Config.GpuAccessor.Log("Shader instruction Cset is not implemented.");
- }
-
public static void Cs2r(EmitterContext context)
{
InstCs2r op = context.GetOp<InstCs2r>();