-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
bugSomething isn't workingSomething isn't working
Description
crash code:
(file :VulkanBase.cxx, project:QtVulkanSceneDemo)
void VulkanBase::draw() {
if (m_stop or m_pause) return;
m_signalFrame = false;
prepareFrame();
// Command buffer to be sumitted to the queue
m_submitInfo.commandBufferCount = 1;
m_submitInfo.pCommandBuffers = &m_drawCmdBuffers[m_currentBuffer];
// Submit to queue
if (m_prepared) {
VK_CHECK_RESULT(vkQueueSubmit(m_queue, 1, &m_submitInfo, VK_NULL_HANDLE));/////<-------crash
}
submitFrame();
m_signalFrame = true;
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working