From 9da9200cf4c6b91914b5fe97134857413530b48b Mon Sep 17 00:00:00 2001 From: DH Date: Thu, 14 Nov 2024 00:26:56 +0300 Subject: [PATCH] gpu: do not wait for compute pipes --- rpcsx/gpu/Device.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/rpcsx/gpu/Device.cpp b/rpcsx/gpu/Device.cpp index 2832bea82..f3b944b17 100644 --- a/rpcsx/gpu/Device.cpp +++ b/rpcsx/gpu/Device.cpp @@ -952,16 +952,6 @@ void Device::waitForIdle() { } } - for (auto &pipe : computePipes) { - for (auto &queue : pipe.queues) { - for (auto &ring : queue) { - if (ring.wptr != ring.rptr) { - allProcessed = false; - } - } - } - } - if (allProcessed) { break; }