diff options
Diffstat (limited to 'Ryujinx.Graphics.OpenGL/TextureCopy.cs')
-rw-r--r-- | Ryujinx.Graphics.OpenGL/TextureCopy.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.OpenGL/TextureCopy.cs b/Ryujinx.Graphics.OpenGL/TextureCopy.cs index 244ace8a..55666426 100644 --- a/Ryujinx.Graphics.OpenGL/TextureCopy.cs +++ b/Ryujinx.Graphics.OpenGL/TextureCopy.cs @@ -96,7 +96,7 @@ namespace Ryujinx.Graphics.OpenGL private static bool IsDepthOnly(Format format) { - return format == Format.D16Unorm || + return format == Format.D16Unorm || format == Format.D24X8Unorm || format == Format.D32Float; } |