diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-03-14 23:42:08 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 03:42:08 +0100 |
commit | e5ad1dfa48590685fd93443a2adfd8568f6c1db0 (patch) | |
tree | 4810662b088d4f553a25f293778f39861fb0326d /Ryujinx.Graphics.GAL/Format.cs | |
parent | 79becc4b78bd8a8402cc86a96c812cb8ac9d027a (diff) |
Implement S8D24 texture format and tweak depth range detection (#2458)1.1.74
Diffstat (limited to 'Ryujinx.Graphics.GAL/Format.cs')
-rw-r--r-- | Ryujinx.Graphics.GAL/Format.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.GAL/Format.cs b/Ryujinx.Graphics.GAL/Format.cs index a454413b..50cc6d40 100644 --- a/Ryujinx.Graphics.GAL/Format.cs +++ b/Ryujinx.Graphics.GAL/Format.cs @@ -52,7 +52,7 @@ namespace Ryujinx.Graphics.GAL R32G32B32A32Sint, S8Uint, D16Unorm, - D24X8Unorm, + S8UintD24Unorm, D32Float, D24UnormS8Uint, D32FloatS8Uint, @@ -266,7 +266,7 @@ namespace Ryujinx.Graphics.GAL { case Format.D16Unorm: case Format.D24UnormS8Uint: - case Format.D24X8Unorm: + case Format.S8UintD24Unorm: case Format.D32Float: case Format.D32FloatS8Uint: case Format.S8Uint: |