Browse Source

Fix build

pull/3129/head
MaranBr 3 weeks ago
parent
commit
c5e5eba4a8
  1. 4
      src/video_core/fence_manager.h

4
src/video_core/fence_manager.h

@ -67,6 +67,10 @@ public:
SignalFence(std::move(do_nothing)); SignalFence(std::move(do_nothing));
} }
void SyncOperation(std::function<void()>&& func) {
uncommitted_operations.emplace_back(std::move(func));
}
void SignalFence(std::function<void()>&& func) { void SignalFence(std::function<void()>&& func) {
bool delay_fence = Settings::IsGPULevelHigh(); bool delay_fence = Settings::IsGPULevelHigh();
if constexpr (!can_async_check) { if constexpr (!can_async_check) {

Loading…
Cancel
Save