early-access version 2991
This commit is contained in:
parent
e0da25b9c6
commit
decdb2f8ca
2 changed files with 5 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 2990.
|
||||
This is the source code for early-access 2991.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -139,6 +139,7 @@ void Scheduler::WorkerThread(std::stop_token stop_token) {
|
|||
Common::SetCurrentThreadName("yuzu:VulkanWorker");
|
||||
do {
|
||||
std::unique_ptr<CommandChunk> work;
|
||||
bool has_submit{false};
|
||||
{
|
||||
std::unique_lock lock{work_mutex};
|
||||
if (work_queue.empty()) {
|
||||
|
@ -150,9 +151,10 @@ void Scheduler::WorkerThread(std::stop_token stop_token) {
|
|||
}
|
||||
work = std::move(work_queue.front());
|
||||
work_queue.pop();
|
||||
}
|
||||
const bool has_submit = work->HasSubmit();
|
||||
|
||||
has_submit = work->HasSubmit();
|
||||
work->ExecuteAll(current_cmdbuf);
|
||||
}
|
||||
if (has_submit) {
|
||||
AllocateWorkerCommandBuffer();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue