diff options
author | gdkchan <gab.dark.100@gmail.com> | 2019-12-29 20:29:14 -0300 |
---|---|---|
committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
commit | ffaad0eaac147e863384fa42b34d24fa98c7e1cb (patch) | |
tree | d0292e67bd00bb60f5cb4523f9ea42a3d62d69f4 | |
parent | 32764f95602611e9daa50362330d760e8ed83fda (diff) |
Fix missing S8 format on texture compatibility check
-rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs b/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs index 5b869620..408f6e2a 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs @@ -105,6 +105,7 @@ namespace Ryujinx.Graphics.Gpu.Image case Format.D24UnormS8Uint: case Format.D32Float: case Format.D32FloatS8Uint: + case Format.S8Uint: return true; } |