diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-06 03:01:53 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-10 16:40:46 -0500 |
| commit | 7222188cde8f1699e1384d3ec773928f7fb415e2 (patch) | |
| tree | 5c532e67f4d22910c166a1d56fc42cf95251eaa9 /Source/Core/VideoCommon/AsyncRequests.cpp | |
| parent | c4bd98c6269f41f251d333eeb23cf8ffeb6ec51d (diff) | |
Core/VideoCommon: Push presentation time calculated from CPU thread to GPU thread.
Diffstat (limited to 'Source/Core/VideoCommon/AsyncRequests.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AsyncRequests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
