From 7222188cde8f1699e1384d3ec773928f7fb415e2 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 6 Mar 2025 03:01:53 -0600 Subject: Core/VideoCommon: Push presentation time calculated from CPU thread to GPU thread. --- Source/Core/VideoCommon/AsyncRequests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp') diff --git a/Source/Core/VideoCommon/AsyncRequests.cpp b/Source/Core/VideoCommon/AsyncRequests.cpp index 92c06f0b90..92a7e0c635 100644 --- a/Source/Core/VideoCommon/AsyncRequests.cpp +++ b/Source/Core/VideoCommon/AsyncRequests.cpp @@ -157,7 +157,7 @@ void AsyncRequests::HandleEvent(const AsyncRequests::Event& e) case Event::SWAP_EVENT: g_presenter->ViSwap(e.swap_event.xfbAddr, e.swap_event.fbWidth, e.swap_event.fbStride, - e.swap_event.fbHeight, e.time); + e.swap_event.fbHeight, e.time, e.swap_event.presentation_time); break; case Event::BBOX_READ: -- cgit v1.2.3