aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/low_latency2/swapchain_monitor.cc
diff options
context:
space:
mode:
authorNicolas James <nj3ahxac@gmail.com>2026-04-08 12:58:41 +1000
committerNicolas James <nj3ahxac@gmail.com>2026-04-08 12:58:41 +1000
commita67570bc468664627da48b4ebe22c7caad217732 (patch)
tree3e87d47819b58fdab446be7c2d0b4b7aeab3e410 /src/strategies/low_latency2/swapchain_monitor.cc
parent453d5b0052bd17ed74d47570ffff403ffcd9ebb3 (diff)
Fix clearing outstanding semaphores instead of outstanding work for LowLatency2
Diffstat (limited to 'src/strategies/low_latency2/swapchain_monitor.cc')
-rw-r--r--src/strategies/low_latency2/swapchain_monitor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strategies/low_latency2/swapchain_monitor.cc b/src/strategies/low_latency2/swapchain_monitor.cc
index 7442eec..3d1d276 100644
--- a/src/strategies/low_latency2/swapchain_monitor.cc
+++ b/src/strategies/low_latency2/swapchain_monitor.cc
@@ -102,7 +102,7 @@ void SwapchainMonitor::notify_semaphore(const VkSemaphore& timeline_semaphore,
return frame_span->has_completed();
})) {
wakeup_semaphore.signal(this->device);
- this->pending_signals.clear();
+ this->pending_frame_spans.clear();
return;
}