diff options
author | Morph <[email protected]> | 2021-04-02 06:46:32 -0400 |
---|---|---|
committer | Morph <[email protected]> | 2021-04-06 05:58:57 -0400 |
commit | 01ea0f3c74e10af1613e9e272c469a03f6701419 (patch) | |
tree | 1ab0427b6aaa51b7f0dd9624af7e8add60ce8778 /src/yuzu/configuration/configure_graphics.ui | |
parent | 7feb490f83904c7a2724beb89cce20ec7292b07b (diff) | |
download | yuzu-android-01ea0f3c74e10af1613e9e272c469a03f6701419.tar.gz yuzu-android-01ea0f3c74e10af1613e9e272c469a03f6701419.zip |
configure_graphics: Add Borderless Windowed fullscreen mode
The borderless windowed fullscreen mode solves several issues with the presentation of the overlay dialogs and on-screen keyboard in exclusive fullscreen mode, and also has other benefits such as smoother gameplay, lower latency and a significant reduction in screen tearing.
Co-authored-by: Its-Rei <[email protected]>
Diffstat (limited to 'src/yuzu/configuration/configure_graphics.ui')
-rw-r--r-- | src/yuzu/configuration/configure_graphics.ui | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/src/yuzu/configuration/configure_graphics.ui b/src/yuzu/configuration/configure_graphics.ui index 58486eb1e..ab0bd4d77 100644 --- a/src/yuzu/configuration/configure_graphics.ui +++ b/src/yuzu/configuration/configure_graphics.ui @@ -105,8 +105,47 @@ </widget> </item> <item> + <widget class="QWidget" name="fullscreen_mode_layout" native="true"> + <layout class="QHBoxLayout" name="horizontalLayout_1"> + <property name="leftMargin"> + <number>0</number> + </property> + <property name="topMargin"> + <number>0</number> + </property> + <property name="rightMargin"> + <number>0</number> + </property> + <property name="bottomMargin"> + <number>0</number> + </property> + <item> + <widget class="QLabel" name="fullscreen_mode_label"> + <property name="text"> + <string>Fullscreen Mode:</string> + </property> + </widget> + </item> + <item> + <widget class="QComboBox" name="fullscreen_mode_combobox"> + <item> + <property name="text"> + <string>Borderless Windowed</string> + </property> + </item> + <item> + <property name="text"> + <string>Exclusive Fullscreen</string> + </property> + </item> + </widget> + </item> + </layout> + </widget> + </item> + <item> <widget class="QWidget" name="aspect_ratio_layout" native="true"> - <layout class="QHBoxLayout" name="horizontalLayout_6"> + <layout class="QHBoxLayout" name="horizontalLayout_2"> <property name="leftMargin"> <number>0</number> </property> |