diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2020-11-09 21:06:46 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-10 01:06:46 +0100 |
| commit | c3d62bd0783a20efb78fa0776f4c620970774cf9 (patch) | |
| tree | 9ed3aaf6e7eec9d11e43021633be29f122a1bf4a /Ryujinx.Graphics.Shader/Decoders/ReductionType.cs | |
| parent | 934a78005e75653529c320cf90e78fe6536447c2 (diff) | |
Implement ATOM shader instruction (#1687)
* Implement ATOM shader instruction
* Fix reduction type decoding
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/ReductionType.cs')
| -rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/ReductionType.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Ryujinx.Graphics.Shader/Decoders/ReductionType.cs b/Ryujinx.Graphics.Shader/Decoders/ReductionType.cs index aaa2186e..4c8bd37e 100644 --- a/Ryujinx.Graphics.Shader/Decoders/ReductionType.cs +++ b/Ryujinx.Graphics.Shader/Decoders/ReductionType.cs @@ -2,11 +2,11 @@ namespace Ryujinx.Graphics.Shader.Decoders { enum ReductionType { - U32 = 0, - S32 = 1, - U64 = 2, - FP32FtzRn = 3, - U128 = 4, - S64 = 5 + U32 = 0, + S32 = 1, + U64 = 2, + FP32FtzRn = 3, + FP16x2FtzRn = 4, + S64 = 5 } }
\ No newline at end of file |
