Skip to content

Commit

Permalink
gpu: do not wait for compute pipes
Browse files Browse the repository at this point in the history
  • Loading branch information
DHrpcs3 committed Nov 13, 2024
1 parent 70b3123 commit 9da9200
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions rpcsx/gpu/Device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 9da9200

Please sign in to comment.