[GPU] Remove 1f in RCP instruction emitter on glsl decompiler
This commit is contained in:
parent
f6a7e77b1f
commit
bb9936f1bf
1 changed files with 1 additions and 1 deletions
|
@ -500,7 +500,7 @@ namespace Ryujinx.Graphics.Gal.Shader
|
|||
|
||||
private string GetFnegExpr(ShaderIrOp Op) => GetUnaryExpr(Op, "-");
|
||||
|
||||
private string GetFrcpExpr(ShaderIrOp Op) => GetUnaryExpr(Op, "1f / ");
|
||||
private string GetFrcpExpr(ShaderIrOp Op) => GetUnaryExpr(Op, "1 / ");
|
||||
|
||||
private string GetFrsqExpr(ShaderIrOp Op) => GetUnaryCall(Op, "inversesqrt");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue