This commit is contained in:
PavelBARABANOV 2026-02-12 18:28:07 +03:00
parent d1232ceeb0
commit dea6e7c432
1 changed files with 3 additions and 3 deletions

View File

@ -72,11 +72,11 @@ public:
}
void SignalFence(std::function<void()>&& func) {
#ifdef __ANDROID__
#ifdef ANDROID
const bool early_release_fences = Settings::values.early_release_fences.GetValue();
#else
#else
constexpr bool early_release_fences = false;
#endif
#endif
const bool should_flush = ShouldFlush();
const bool delay_fence = Settings::IsGPULevelHigh() ||
(Settings::IsGPULevelMedium() && should_flush);