summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Liam2023-06-14 14:11:46 -0400
committerGravatar Liam2023-06-14 14:11:46 -0400
commit8d6aefdcc452b602d94a84d13bbbc15f806b689c (patch)
tree772ec67651a9e8f9c319815bfbfc95c274ff30c9 /src/common
parentMerge pull request #10773 from 8bitDream/vcpkg (diff)
downloadyuzu-8d6aefdcc452b602d94a84d13bbbc15f806b689c.tar.gz
yuzu-8d6aefdcc452b602d94a84d13bbbc15f806b689c.tar.xz
yuzu-8d6aefdcc452b602d94a84d13bbbc15f806b689c.zip
video_core: optionally skip barriers on feedback loops
Diffstat (limited to 'src/common')
-rw-r--r--src/common/settings.h1
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 {
483 AstcRecompression::Uncompressed, AstcRecompression::Uncompressed, AstcRecompression::Bc3, 483 AstcRecompression::Uncompressed, AstcRecompression::Uncompressed, AstcRecompression::Bc3,
484 "astc_recompression"}; 484 "astc_recompression"};
485 SwitchableSetting<bool> use_video_framerate{false, "use_video_framerate"}; 485 SwitchableSetting<bool> use_video_framerate{false, "use_video_framerate"};
486 SwitchableSetting<bool> barrier_feedback_loops{true, "barrier_feedback_loops"};
486 487
487 SwitchableSetting<u8> bg_red{0, "bg_red"}; 488 SwitchableSetting<u8> bg_red{0, "bg_red"};
488 SwitchableSetting<u8> bg_green{0, "bg_green"}; 489 SwitchableSetting<u8> bg_green{0, "bg_green"};