summaryrefslogtreecommitdiff
path: root/src/core/frontend/framebuffer_layout.h
diff options
context:
space:
mode:
authorGravatar Morph2020-02-14 14:39:04 -0500
committerGravatar Morph2020-02-14 14:39:04 -0500
commitc3d0a0d6277c97d6e3c99914358dce15cc26871c (patch)
tree17d032c03feb8a38938515d5fe9cb9f020d5af01 /src/core/frontend/framebuffer_layout.h
parentAddress feedback (diff)
downloadyuzu-c3d0a0d6277c97d6e3c99914358dce15cc26871c.tar.gz
yuzu-c3d0a0d6277c97d6e3c99914358dce15cc26871c.tar.xz
yuzu-c3d0a0d6277c97d6e3c99914358dce15cc26871c.zip
Add 4:3 aspect ratio and address feedback
Diffstat (limited to 'src/core/frontend/framebuffer_layout.h')
-rw-r--r--src/core/frontend/framebuffer_layout.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/frontend/framebuffer_layout.h b/src/core/frontend/framebuffer_layout.h
index 7f6fbe468..1d39c1faf 100644
--- a/src/core/frontend/framebuffer_layout.h
+++ b/src/core/frontend/framebuffer_layout.h
@@ -18,9 +18,10 @@ enum ScreenDocked : u32 {
18 HeightDocked = 1080, 18 HeightDocked = 1080,
19}; 19};
20 20
21enum class Aspect { 21enum class AspectRatio {
22 Default, 22 Default,
23 Aspect21by9, 23 R4_3,
24 R21_9,
24 StretchToWindow, 25 StretchToWindow,
25}; 26};
26 27
@@ -56,10 +57,10 @@ FramebufferLayout FrameLayoutFromResolutionScale(u32 res_scale);
56 57
57/** 58/**
58 * Convenience method to determine emulation aspect ratio 59 * Convenience method to determine emulation aspect ratio
59 * @param aspect Represents the index of aspect ratio in Settings::values.aspect_ratio 60 * @param aspect Represents the index of aspect ratio stored in Settings::values.aspect_ratio
60 * @param window_aspect_ratio Current window aspect ratio 61 * @param window_aspect_ratio Current window aspect ratio
61 * @return Emulation render window aspect ratio 62 * @return Emulation render window aspect ratio
62 */ 63 */
63float EmulationAspectRatio(Aspect aspect, float window_aspect_ratio); 64float EmulationAspectRatio(AspectRatio aspect, float window_aspect_ratio);
64 65
65} // namespace Layout 66} // namespace Layout