mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-06 02:35:09 +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{
|
gpu.vkQueue.submit(vk::SubmitInfo{
|
||||||
.commandBufferCount = 1,
|
.commandBufferCount = 1,
|
||||||
.pCommandBuffers = &*commandBuffer,
|
.pCommandBuffers = &*commandBuffer,
|
||||||
.waitSemaphoreCount = static_cast<u32>(waitSemaphores.size()),
|
.waitSemaphoreCount = static_cast<u32>(fullWaitSemaphores.size()),
|
||||||
.pWaitSemaphores = fullWaitSemaphores.data(),
|
.pWaitSemaphores = fullWaitSemaphores.data(),
|
||||||
.pWaitDstStageMask = fullWaitStages.data(),
|
.pWaitDstStageMask = fullWaitStages.data(),
|
||||||
.signalSemaphoreCount = static_cast<u32>(fullSignalSemaphores.size()),
|
.signalSemaphoreCount = static_cast<u32>(fullSignalSemaphores.size()),
|
||||||
|
Loading…
Reference in New Issue
Block a user