Merge pull request #9975 from liamwhite/more-waiting

vulkan: fix more excessive waiting in scheduler
This commit is contained in:
Morph 2023-03-24 00:19:43 -04:00 committed by GitHub
commit 7a8a7545f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,12 +65,13 @@ void Scheduler::WaitWorker() {
DispatchWork();
// Ensure the queue is drained.
std::unique_lock ql{queue_mutex};
event_cv.wait(ql, [this] { return work_queue.empty(); });
{
std::unique_lock ql{queue_mutex};
event_cv.wait(ql, [this] { return work_queue.empty(); });
}
// Now wait for execution to finish.
// This needs to be done in the same order as WorkerThread.
std::unique_lock el{execution_mutex};
std::scoped_lock el{execution_mutex};
}
void Scheduler::DispatchWork() {