diff options
author | bunnei <bunneidev@gmail.com> | 2023-06-22 06:10:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 06:10:08 +0200 |
commit | 7eb7d56b1bf96267969a913940ae9e35581ab27a (patch) | |
tree | acbad457a360d5d5ab39ffb7d88d1f4d2e56a2f3 /src/common/settings.h | |
parent | Merge pull request #10841 from liamwhite/math-is-hard (diff) | |
parent | video_core: optionally skip barriers on feedback loops (diff) | |
download | yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar.gz yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar.bz2 yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar.lz yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar.xz yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.tar.zst yuzu-7eb7d56b1bf96267969a913940ae9e35581ab27a.zip |
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 9682281b0..3aedf3850 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -483,6 +483,7 @@ struct Values { AstcRecompression::Uncompressed, AstcRecompression::Uncompressed, AstcRecompression::Bc3, "astc_recompression"}; SwitchableSetting<bool> use_video_framerate{false, "use_video_framerate"}; + SwitchableSetting<bool> barrier_feedback_loops{true, "barrier_feedback_loops"}; SwitchableSetting<u8> bg_red{0, "bg_red"}; SwitchableSetting<u8> bg_green{0, "bg_green"}; |