aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-03-25 11:49:10 -0300
committerGitHub <noreply@github.com>2020-03-25 15:49:10 +0100
commit1586450a38caabdfe62c10391c28f52f0c88372e (patch)
tree969876251e1ddc452494badab1e477f301c170cb /Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
parent56374c8633b68bccba774b85140241a8a4173f68 (diff)
Implement VMNMX shader instruction (#1032)
* Implement VMNMX shader instruction * No need for the gap on the enum * Fix typo
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs')
-rw-r--r--Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs b/Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
new file mode 100644
index 00000000..65891789
--- /dev/null
+++ b/Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs
@@ -0,0 +1,14 @@
+namespace Ryujinx.Graphics.Shader.Decoders
+{
+ enum VideoPostOp
+ {
+ Mrg16h,
+ Mrg16l,
+ Mrg8b0,
+ Mrg8b2,
+ Acc,
+ Min,
+ Max,
+ Pass
+ }
+}