mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-04 14:02:45 +01:00
Merge pull request #9975 from liamwhite/more-waiting
vulkan: fix more excessive waiting in scheduler
This commit is contained in:
commit
7a8a7545f2
1 changed files with 5 additions and 4 deletions
|
@ -65,12 +65,13 @@ void Scheduler::WaitWorker() {
|
||||||
DispatchWork();
|
DispatchWork();
|
||||||
|
|
||||||
// Ensure the queue is drained.
|
// Ensure the queue is drained.
|
||||||
|
{
|
||||||
std::unique_lock ql{queue_mutex};
|
std::unique_lock ql{queue_mutex};
|
||||||
event_cv.wait(ql, [this] { return work_queue.empty(); });
|
event_cv.wait(ql, [this] { return work_queue.empty(); });
|
||||||
|
}
|
||||||
|
|
||||||
// Now wait for execution to finish.
|
// Now wait for execution to finish.
|
||||||
// This needs to be done in the same order as WorkerThread.
|
std::scoped_lock el{execution_mutex};
|
||||||
std::unique_lock el{execution_mutex};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Scheduler::DispatchWork() {
|
void Scheduler::DispatchWork() {
|
||||||
|
|
Loading…
Reference in a new issue