Remove some unused args on the shader translator

This commit is contained in:
gdkchan 2020-01-06 18:52:47 -03:00 committed by Thog
parent 6407729a1d
commit 912e43e979
4 changed files with 19 additions and 19 deletions

View file

@ -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);
}