diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-14 16:40:04 -0400 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-06-20 21:38:34 -0300 |
commit | 082740d34db0996a0af73d7680c57e1abb31c712 (patch) | |
tree | bcc9ecb6af93114eaf008f8a576b1a99b9f189fe /src/video_core/surface.cpp | |
parent | 03d489dcf5dbe13dff1ff788c609f964dd24019c (diff) |
surface: Correct format S8Z24
Diffstat (limited to 'src/video_core/surface.cpp')
-rw-r--r-- | src/video_core/surface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/surface.cpp b/src/video_core/surface.cpp index 52a79e4a7..c50f6354d 100644 --- a/src/video_core/surface.cpp +++ b/src/video_core/surface.cpp @@ -308,8 +308,8 @@ PixelFormat PixelFormatFromTextureFormat(Tegra::Texture::TextureFormat format, return PixelFormat::Z32F; case Tegra::Texture::TextureFormat::Z16: return PixelFormat::Z16; - case Tegra::Texture::TextureFormat::Z24S8: - return PixelFormat::Z24S8; + case Tegra::Texture::TextureFormat::S8Z24: + return PixelFormat::S8Z24; case Tegra::Texture::TextureFormat::ZF32_X24S8: return PixelFormat::Z32FS8; case Tegra::Texture::TextureFormat::DXT1: |