diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-03-25 11:49:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-25 15:49:10 +0100 |
| commit | 1586450a38caabdfe62c10391c28f52f0c88372e (patch) | |
| tree | 969876251e1ddc452494badab1e477f301c170cb /Ryujinx.Graphics.Shader/Decoders/VideoPostOp.cs | |
| parent | 56374c8633b68bccba774b85140241a8a4173f68 (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.cs | 14 |
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 + } +} |
