Remove some unused args on the shader translator
This commit is contained in:
parent
6407729a1d
commit
912e43e979
4 changed files with 19 additions and 19 deletions
|
@ -169,10 +169,10 @@ namespace Ryujinx.Graphics.Shader.Instructions
|
|||
{
|
||||
case Condition.Equal:
|
||||
case Condition.EqualUnordered:
|
||||
return GetZF(context);
|
||||
return GetZF();
|
||||
case Condition.NotEqual:
|
||||
case Condition.NotEqualUnordered:
|
||||
return context.BitwiseNot(GetZF(context));
|
||||
return context.BitwiseNot(GetZF());
|
||||
}
|
||||
|
||||
return Const(IrConsts.True);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue