aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs')
-rw-r--r--Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs b/Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs
new file mode 100644
index 00000000..4638f660
--- /dev/null
+++ b/Ryujinx.Graphics/Shader/Decoders/IOpCodeHfma.cs
@@ -0,0 +1,13 @@
+namespace Ryujinx.Graphics.Shader.Decoders
+{
+ interface IOpCodeHfma : IOpCode
+ {
+ bool NegateB { get; }
+ bool NegateC { get; }
+ bool Saturate { get; }
+
+ FPHalfSwizzle SwizzleA { get; }
+ FPHalfSwizzle SwizzleB { get; }
+ FPHalfSwizzle SwizzleC { get; }
+ }
+} \ No newline at end of file