aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs b/Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs
new file mode 100644
index 00000000..62c87bf4
--- /dev/null
+++ b/Ryujinx.Graphics.Shader/Decoders/IOpCodeLop.cs
@@ -0,0 +1,10 @@
+namespace Ryujinx.Graphics.Shader.Decoders
+{
+ interface IOpCodeLop : IOpCodeAlu
+ {
+ LogicalOperation LogicalOp { get; }
+
+ bool InvertA { get; }
+ bool InvertB { get; }
+ }
+} \ No newline at end of file