diff options
| author | 2018-07-23 17:23:45 -0400 | |
|---|---|---|
| committer | 2018-07-23 21:20:09 -0400 | |
| commit | 89db8c2171b15931060db4eb440271f7179c9660 (patch) | |
| tree | 092b4b88e5dd04d29c4e60fe9bb42717a76a0ed8 /src | |
| parent | Merge pull request #775 from lioncash/str (diff) | |
| download | yuzu-89db8c2171b15931060db4eb440271f7179c9660.tar.gz yuzu-89db8c2171b15931060db4eb440271f7179c9660.tar.xz yuzu-89db8c2171b15931060db4eb440271f7179c9660.zip | |
gl_rasterizer_cache: Add missing log statements.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer_cache.h | 2 |
1 files changed, 2 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 b084c4db4..fbdab58be 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer_cache.h +++ b/src/video_core/renderer_opengl/gl_rasterizer_cache.h | |||
| @@ -249,6 +249,7 @@ struct SurfaceParams { | |||
| 249 | case PixelFormat::ASTC_2D_4X4: | 249 | case PixelFormat::ASTC_2D_4X4: |
| 250 | return Tegra::Texture::TextureFormat::ASTC_2D_4X4; | 250 | return Tegra::Texture::TextureFormat::ASTC_2D_4X4; |
| 251 | default: | 251 | default: |
| 252 | LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format)); | ||
| 252 | UNREACHABLE(); | 253 | UNREACHABLE(); |
| 253 | } | 254 | } |
| 254 | } | 255 | } |
| @@ -264,6 +265,7 @@ struct SurfaceParams { | |||
| 264 | case PixelFormat::Z16: | 265 | case PixelFormat::Z16: |
| 265 | return Tegra::DepthFormat::Z16_UNORM; | 266 | return Tegra::DepthFormat::Z16_UNORM; |
| 266 | default: | 267 | default: |
| 268 | LOG_CRITICAL(HW_GPU, "Unimplemented format={}", static_cast<u32>(format)); | ||
| 267 | UNREACHABLE(); | 269 | UNREACHABLE(); |
| 268 | } | 270 | } |
| 269 | } | 271 | } |