mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VulkanContext: Ensure present queue family is valid before incrementing queueCreateInfoCount
This commit is contained in:
@ -628,7 +628,8 @@ bool VulkanContext::CreateDevice(VkSurfaceKHR surface, bool enable_validation_la
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
device_info.queueCreateInfoCount = 1;
|
device_info.queueCreateInfoCount = 1;
|
||||||
if (m_graphics_queue_family_index != m_present_queue_family_index)
|
if (m_graphics_queue_family_index != m_present_queue_family_index &&
|
||||||
|
m_present_queue_family_index != queue_family_count)
|
||||||
{
|
{
|
||||||
device_info.queueCreateInfoCount = 2;
|
device_info.queueCreateInfoCount = 2;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user