diff options
author | bunnei <bunneidev@gmail.com> | 2023-05-07 06:55:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-07 06:55:39 +0200 |
commit | 3547248ec2f303ba1ce5cf41548631ad00e7f739 (patch) | |
tree | a7e99fa79998384d4f20361234bf77de57671571 /src/common/settings.h | |
parent | Merge pull request #10174 from german77/motriod (diff) | |
parent | qt_common: Remove yuzu prefix (diff) | |
download | yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar.gz yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar.bz2 yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar.lz yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar.xz yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.tar.zst yuzu-3547248ec2f303ba1ce5cf41548631ad00e7f739.zip |
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 55200c36f..2bf191cef 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -16,6 +16,13 @@ namespace Settings { +enum class VSyncMode : u32 { + Immediate = 0, + Mailbox = 1, + FIFO = 2, + FIFORelaxed = 3, +}; + enum class RendererBackend : u32 { OpenGL = 0, Vulkan = 1, @@ -456,7 +463,8 @@ struct Values { SwitchableSetting<NvdecEmulation> nvdec_emulation{NvdecEmulation::GPU, "nvdec_emulation"}; SwitchableSetting<bool> accelerate_astc{true, "accelerate_astc"}; SwitchableSetting<bool> async_astc{false, "async_astc"}; - SwitchableSetting<bool> use_vsync{true, "use_vsync"}; + Setting<VSyncMode, true> vsync_mode{VSyncMode::FIFO, VSyncMode::Immediate, + VSyncMode::FIFORelaxed, "use_vsync"}; SwitchableSetting<ShaderBackend, true> shader_backend{ShaderBackend::GLSL, ShaderBackend::GLSL, ShaderBackend::SPIRV, "shader_backend"}; SwitchableSetting<bool> use_asynchronous_shaders{false, "use_asynchronous_shaders"}; |