summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/video_core/gpu.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index b2a83ce0b..4ff4d71c5 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -42,6 +42,7 @@ u32 RenderTargetBytesPerPixel(RenderTargetFormat format) {
42 case RenderTargetFormat::RGB10_A2_UNORM: 42 case RenderTargetFormat::RGB10_A2_UNORM:
43 case RenderTargetFormat::BGRA8_UNORM: 43 case RenderTargetFormat::BGRA8_UNORM:
44 case RenderTargetFormat::R32_FLOAT: 44 case RenderTargetFormat::R32_FLOAT:
45 case RenderTargetFormat::R11G11B10_FLOAT:
45 return 4; 46 return 4;
46 default: 47 default:
47 UNIMPLEMENTED_MSG("Unimplemented render target format {}", static_cast<u32>(format)); 48 UNIMPLEMENTED_MSG("Unimplemented render target format {}", static_cast<u32>(format));