mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 23:25:40 +12:00
Remove redundant semaphore wait
Don't need this anymore now that we sync on the host anyways
This commit is contained in:
parent
085d7d5568
commit
225d2095b9
1 changed files with 0 additions and 6 deletions
|
@ -817,12 +817,6 @@ void RendererVK::display() {
|
|||
waitSemaphoreStages.emplace_back(waitStageMask);
|
||||
}
|
||||
|
||||
// Ensure a proper semaphore wait on render-finished
|
||||
// We already wait on the fence, but this must be done to be compliant
|
||||
// to validation layers
|
||||
waitSemaphores.emplace_back(renderFinishedSemaphore[frameBufferingIndex].get());
|
||||
waitSemaphoreStages.emplace_back(vk::PipelineStageFlagBits::eColorAttachmentOutput);
|
||||
|
||||
submitInfo.setWaitSemaphores(waitSemaphores);
|
||||
submitInfo.setWaitDstStageMask(waitSemaphoreStages);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue