mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 20:25:10 +01:00
Pass correct wait semaphore array size to queue submit
This commit is contained in:
parent
c78a4b9699
commit
dd360b8f75
@ -95,7 +95,7 @@ namespace skyline::gpu {
|
||||
gpu.vkQueue.submit(vk::SubmitInfo{
|
||||
.commandBufferCount = 1,
|
||||
.pCommandBuffers = &*commandBuffer,
|
||||
.waitSemaphoreCount = static_cast<u32>(waitSemaphores.size()),
|
||||
.waitSemaphoreCount = static_cast<u32>(fullWaitSemaphores.size()),
|
||||
.pWaitSemaphores = fullWaitSemaphores.data(),
|
||||
.pWaitDstStageMask = fullWaitStages.data(),
|
||||
.signalSemaphoreCount = static_cast<u32>(fullSignalSemaphores.size()),
|
||||
|
Loading…
Reference in New Issue
Block a user