diff options
author | Matías Locatti <42481638+goldenx86@users.noreply.github.com> | 2022-11-26 21:27:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-26 21:27:04 +0100 |
commit | 26211ac33979bd9a7522175b53608276440f36f7 (patch) | |
tree | 31d517ffe748f6022abe9714ae4d0d0be097be4b /src | |
parent | Merge pull request #9288 from vonchenplus/deferred_draw (diff) | |
download | yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar.gz yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar.bz2 yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar.lz yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar.xz yuzu-26211ac33979bd9a7522175b53608276440f36f7.tar.zst yuzu-26211ac33979bd9a7522175b53608276440f36f7.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 0eb98939c..d330076e8 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -442,7 +442,7 @@ struct Values { SwitchableSetting<NvdecEmulation> nvdec_emulation{NvdecEmulation::GPU, "nvdec_emulation"}; SwitchableSetting<bool> accelerate_astc{true, "accelerate_astc"}; SwitchableSetting<bool> use_vsync{true, "use_vsync"}; - SwitchableSetting<ShaderBackend, true> shader_backend{ShaderBackend::GLASM, ShaderBackend::GLSL, + SwitchableSetting<ShaderBackend, true> shader_backend{ShaderBackend::GLSL, ShaderBackend::GLASM, ShaderBackend::SPIRV, "shader_backend"}; SwitchableSetting<bool> use_asynchronous_shaders{false, "use_asynchronous_shaders"}; SwitchableSetting<bool> use_fast_gpu_time{true, "use_fast_gpu_time"}; |