diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2023-08-28 01:37:40 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-09-16 17:59:20 +0200 |
commit | b99f94a7ffab0698f209bf1b39d337940bc40e50 (patch) | |
tree | e5d3c3348ea579760276b6d7bb7fd10a98fe0910 /src/common/settings.h | |
parent | Vulkan: Implement Depth Bias Control (diff) | |
download | yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar.gz yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar.bz2 yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar.lz yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar.xz yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.tar.zst yuzu-b99f94a7ffab0698f209bf1b39d337940bc40e50.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 82ec9077e..6f050c89d 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -350,6 +350,8 @@ struct Values { linkage, false, "disable_shader_loop_safety_checks", Category::RendererDebug}; Setting<bool> enable_renderdoc_hotkey{linkage, false, "renderdoc_hotkey", Category::RendererDebug}; + // TODO: remove this once AMDVLK supports VK_EXT_depth_bias_control + bool renderer_amdvlk_depth_bias_workaround{}; // System SwitchableSetting<Language, true> language_index{linkage, |