summaryrefslogtreecommitdiff
path: root/src/video_core/regs_framebuffer.h
diff options
context:
space:
mode:
authorGravatar Subv2017-08-21 12:18:52 -0500
committerGravatar Subv2017-08-26 11:58:22 -0500
commitda88f3b8f0f9f1162b7ad41f70e2126195eee999 (patch)
tree59ea676e313891a060acef7683b69d837c4ac8bb /src/video_core/regs_framebuffer.h
parentMerge pull request #2872 from wwylele/sw-geo-factor (diff)
downloadyuzu-da88f3b8f0f9f1162b7ad41f70e2126195eee999.tar.gz
yuzu-da88f3b8f0f9f1162b7ad41f70e2126195eee999.tar.xz
yuzu-da88f3b8f0f9f1162b7ad41f70e2126195eee999.zip
Warnings: Fixed a few missing-return warnings in video_core.
Diffstat (limited to 'src/video_core/regs_framebuffer.h')
-rw-r--r--src/video_core/regs_framebuffer.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/video_core/regs_framebuffer.h b/src/video_core/regs_framebuffer.h
index a50bd4111..7b565f911 100644
--- a/src/video_core/regs_framebuffer.h
+++ b/src/video_core/regs_framebuffer.h
@@ -256,10 +256,9 @@ struct FramebufferRegs {
256 return 3; 256 return 3;
257 case DepthFormat::D24S8: 257 case DepthFormat::D24S8:
258 return 4; 258 return 4;
259 default:
260 LOG_CRITICAL(HW_GPU, "Unknown depth format %u", format);
261 UNIMPLEMENTED();
262 } 259 }
260
261 ASSERT_MSG(false, "Unknown depth format %u", format);
263 } 262 }
264 263
265 // Returns the number of bits per depth component of the specified depth format 264 // Returns the number of bits per depth component of the specified depth format
@@ -270,10 +269,9 @@ struct FramebufferRegs {
270 case DepthFormat::D24: 269 case DepthFormat::D24:
271 case DepthFormat::D24S8: 270 case DepthFormat::D24S8:
272 return 24; 271 return 24;
273 default:
274 LOG_CRITICAL(HW_GPU, "Unknown depth format %u", format);
275 UNIMPLEMENTED();
276 } 272 }
273
274 ASSERT_MSG(false, "Unknown depth format %u", format);
277 } 275 }
278 276
279 INSERT_PADDING_WORDS(0x20); 277 INSERT_PADDING_WORDS(0x20);