summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();