VideoConfig: Add "Borderless Fullscreen" option.

This option will disable exclusive fullscreen for users who prefer the old behaviour.
This commit is contained in:
Jules Blok
2014-07-19 20:18:03 +02:00
parent 3400871992
commit cd94ff1966
7 changed files with 21 additions and 1 deletions

View File

@ -159,6 +159,10 @@ protected:
_3d_vision->Enable(vconfig.backend_info.bSupports3DVision);
_3d_vision->Show(vconfig.backend_info.bSupports3DVision);
// Borderless Fullscreen
borderless_fullscreen->Enable(vconfig.backend_info.bSupportsExclusiveFullscreen);
borderless_fullscreen->Show(vconfig.backend_info.bSupportsExclusiveFullscreen);
// EFB copy
efbcopy_texture->Enable(vconfig.bEFBCopyEnable);
efbcopy_ram->Enable(vconfig.bEFBCopyEnable);
@ -189,6 +193,7 @@ protected:
SettingChoice* choice_aamode;
SettingCheckBox* _3d_vision;
SettingCheckBox* borderless_fullscreen;
SettingRadioButton* efbcopy_texture;
SettingRadioButton* efbcopy_ram;