From 912e43e9795309de675faefd628b209a27af8add Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 6 Jan 2020 18:52:47 -0300 Subject: Remove some unused args on the shader translator --- Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs') diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs index 4bf9303c..5123a6e2 100644 --- a/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs +++ b/Ryujinx.Graphics.Shader/Instructions/InstEmitHelper.cs @@ -9,22 +9,22 @@ namespace Ryujinx.Graphics.Shader.Instructions { static class InstEmitHelper { - public static Operand GetZF(EmitterContext context) + public static Operand GetZF() { return Register(0, RegisterType.Flag); } - public static Operand GetNF(EmitterContext context) + public static Operand GetNF() { return Register(1, RegisterType.Flag); } - public static Operand GetCF(EmitterContext context) + public static Operand GetCF() { return Register(2, RegisterType.Flag); } - public static Operand GetVF(EmitterContext context) + public static Operand GetVF() { return Register(3, RegisterType.Flag); } -- cgit v1.2.3