diff options
author | Liam <byteslice@airmail.cc> | 2022-08-25 12:32:14 -0400 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2022-08-25 12:32:14 -0400 |
commit | db3eb168cd6a55c6387e3bfb23fb2eca061a691b (patch) | |
tree | 1dfd733a93036189ec07ee6764afba0113214255 /src/common/settings.cpp | |
parent | a07502a6381ce1e84d7690693d595026c4844854 (diff) |
video_core: add option for pessimistic flushing
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 7282a45d32..0a560ebb72 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -195,6 +195,7 @@ void RestoreGlobalState(bool is_powered_on) { values.shader_backend.SetGlobal(true); values.use_asynchronous_shaders.SetGlobal(true); values.use_fast_gpu_time.SetGlobal(true); + values.use_pessimistic_flushes.SetGlobal(true); values.bg_red.SetGlobal(true); values.bg_green.SetGlobal(true); values.bg_blue.SetGlobal(true); |