summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-25 10:25:01 -0700
committerGravatar GitHub2018-07-25 10:25:01 -0700
commitf445464baf0fade4c205f876f50c370796f19faf (patch)
tree67724cc99d0b69bc65f4e7aee67fcf2bf351b763 /src
parentMerge pull request #816 from Subv/z32_s8 (diff)
parentGPU: Allow the use of Z24S8 as a texture format. (diff)
downloadyuzu-f445464baf0fade4c205f876f50c370796f19faf.tar.gz
yuzu-f445464baf0fade4c205f876f50c370796f19faf.tar.xz
yuzu-f445464baf0fade4c205f876f50c370796f19faf.zip
Merge pull request #813 from Subv/z24_s8_tex
GPU: Allow the use of Z24S8 as a texture format.
Diffstat (limited to 'src')
-rw-r--r--src/video_core/renderer_opengl/gl_rasterizer_cache.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_rasterizer_cache.h b/src/video_core/renderer_opengl/gl_rasterizer_cache.h
index 0267dbac6..fc864c56f 100644
--- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h
+++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h
@@ -253,6 +253,8 @@ struct SurfaceParams {
253 return PixelFormat::R32F; 253 return PixelFormat::R32F;
254 case Tegra::Texture::TextureFormat::ZF32: 254 case Tegra::Texture::TextureFormat::ZF32:
255 return PixelFormat::Z32F; 255 return PixelFormat::Z32F;
256 case Tegra::Texture::TextureFormat::Z24S8:
257 return PixelFormat::Z24S8;
256 case Tegra::Texture::TextureFormat::DXT1: 258 case Tegra::Texture::TextureFormat::DXT1:
257 return PixelFormat::DXT1; 259 return PixelFormat::DXT1;
258 case Tegra::Texture::TextureFormat::DXT23: 260 case Tegra::Texture::TextureFormat::DXT23:
@@ -320,6 +322,8 @@ struct SurfaceParams {
320 return Tegra::Texture::TextureFormat::R16; 322 return Tegra::Texture::TextureFormat::R16;
321 case PixelFormat::Z32F: 323 case PixelFormat::Z32F:
322 return Tegra::Texture::TextureFormat::ZF32; 324 return Tegra::Texture::TextureFormat::ZF32;
325 case PixelFormat::Z24S8:
326 return Tegra::Texture::TextureFormat::Z24S8;
323 default: 327 default:
324 LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format)); 328 LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
325 UNREACHABLE(); 329 UNREACHABLE();