Browse Source
Merge pull request #9047 from german77/steam-aspect
yuzu: Add 16:10 aspect ratio
pull/15/merge
bunnei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
8 additions and
0 deletions
-
src/core/frontend/framebuffer_layout.cpp
-
src/core/frontend/framebuffer_layout.h
-
src/yuzu/configuration/configure_graphics.ui
|
|
|
@ -67,6 +67,8 @@ float EmulationAspectRatio(AspectRatio aspect, float window_aspect_ratio) { |
|
|
|
return 3.0f / 4.0f; |
|
|
|
case AspectRatio::R21_9: |
|
|
|
return 9.0f / 21.0f; |
|
|
|
case AspectRatio::R16_10: |
|
|
|
return 10.0f / 16.0f; |
|
|
|
case AspectRatio::StretchToWindow: |
|
|
|
return window_aspect_ratio; |
|
|
|
default: |
|
|
|
|
|
|
|
@ -27,6 +27,7 @@ enum class AspectRatio { |
|
|
|
Default, |
|
|
|
R4_3, |
|
|
|
R21_9, |
|
|
|
R16_10, |
|
|
|
StretchToWindow, |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
@ -299,6 +299,11 @@ |
|
|
|
<string>Force 21:9</string> |
|
|
|
</property> |
|
|
|
</item> |
|
|
|
<item> |
|
|
|
<property name="text"> |
|
|
|
<string>Force 16:10</string> |
|
|
|
</property> |
|
|
|
</item> |
|
|
|
<item> |
|
|
|
<property name="text"> |
|
|
|
<string>Stretch to Window</string> |
|
|
|
|