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/OpCodeTable.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/OpCodeTable.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs b/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs index 3878dd87..4579d650 100644 --- a/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs +++ b/Ryujinx.Graphics.Shader/Decoders/OpCodeTable.cs @@ -205,6 +205,7 @@ namespace Ryujinx.Graphics.Shader.Decoders Set("1101111101001x", InstEmit.Txq, typeof(OpCodeTex)); Set("1101111101010x", InstEmit.TxqB, typeof(OpCodeTex)); Set("01011111xxxxxx", InstEmit.Vmad, typeof(OpCodeVideo)); + Set("0011101xxxxxxx", InstEmit.Vmnmx, typeof(OpCodeVideo)); Set("0101000011011x", InstEmit.Vote, typeof(OpCodeVote)); Set("0100111xxxxxxx", InstEmit.Xmad, typeof(OpCodeAluCbuf)); Set("0011011x00xxxx", InstEmit.Xmad, typeof(OpCodeAluImm)); |
