mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-14 09:57:53 +00:00
Fence Manager: Force ordering on WFI.
This commit is contained in:
parent
ddb595bf7f
commit
ee5dfe2c02
4 changed files with 71 additions and 38 deletions
|
@ -619,6 +619,10 @@ void RasterizerVulkan::WaitForIdle() {
|
|||
cmdbuf.SetEvent(event, flags);
|
||||
cmdbuf.WaitEvents(event, flags, VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT, {}, {}, {});
|
||||
});
|
||||
if (!gpu.IsAsync()) {
|
||||
return;
|
||||
}
|
||||
fence_manager.SignalOrdering();
|
||||
}
|
||||
|
||||
void RasterizerVulkan::FragmentBarrier() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue