Skip to content
Snippets Groups Projects
Commit 89db8c21 authored by bunnei's avatar bunnei
Browse files

gl_rasterizer_cache: Add missing log statements.

parent 7138b99f
No related branches found
No related tags found
No related merge requests found
...@@ -249,6 +249,7 @@ struct SurfaceParams { ...@@ -249,6 +249,7 @@ struct SurfaceParams {
case PixelFormat::ASTC_2D_4X4: case PixelFormat::ASTC_2D_4X4:
return Tegra::Texture::TextureFormat::ASTC_2D_4X4; return Tegra::Texture::TextureFormat::ASTC_2D_4X4;
default: default:
LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
UNREACHABLE(); UNREACHABLE();
} }
} }
...@@ -264,6 +265,7 @@ struct SurfaceParams { ...@@ -264,6 +265,7 @@ struct SurfaceParams {
case PixelFormat::Z16: case PixelFormat::Z16:
return Tegra::DepthFormat::Z16_UNORM; return Tegra::DepthFormat::Z16_UNORM;
default: default:
LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format));
UNREACHABLE(); UNREACHABLE();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment