summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Fifo.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-10-25 16:47:09 -0500
committerJordan Woyak <jordan.woyak@gmail.com>2025-10-26 23:07:14 -0500
commit700abd68e3214d7586a1ea89b33dce9c9934bacf (patch)
treef02718bca7ec0f5f99839628e1b8083f478581d5 /Source/Core/VideoCommon/Fifo.cpp
parent6416b0a6ec289bc1aba00ce5b8f0fa6bb59586d3 (diff)
VideoCommon/AsyncRequests: Remove now unnecessary `SetEnable` function. Requests are now always enabled. Call `SetPassthrough` on initialization to not be racy.
Diffstat (limited to 'Source/Core/VideoCommon/Fifo.cpp')
-rw-r--r--Source/Core/VideoCommon/Fifo.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Core/VideoCommon/Fifo.cpp b/Source/Core/VideoCommon/Fifo.cpp
index 513b655408..0e7bb4c341 100644
--- a/Source/Core/VideoCommon/Fifo.cpp
+++ b/Source/Core/VideoCommon/Fifo.cpp
@@ -287,9 +287,6 @@ void FifoManager::ResetVideoBuffer()
// Purpose: Keep the Core HW updated about the CPU-GPU distance
void FifoManager::RunGpuLoop()
{
- AsyncRequests::GetInstance()->SetEnable(true);
- AsyncRequests::GetInstance()->SetPassthrough(false);
-
m_gpu_mainloop.Run(
[this] {
// Run events from the CPU thread.
@@ -391,9 +388,6 @@ void FifoManager::RunGpuLoop()
}
},
100);
-
- AsyncRequests::GetInstance()->SetEnable(false);
- AsyncRequests::GetInstance()->SetPassthrough(true);
}
void FifoManager::FlushGpu()