mirror of
https://github.com/glfw/glfw.git
synced 2025-04-05 13:35:07 +00:00
Fix Vulkan extension count when none were found
This commit is contained in:
parent
8210f89b12
commit
4d322a97e1
1 changed files with 3 additions and 0 deletions
|
@ -237,6 +237,9 @@ GLFWAPI const char** glfwGetRequiredInstanceExtensions(uint32_t* count)
|
|||
if (!_glfwInitVulkan(_GLFW_REQUIRE_LOADER))
|
||||
return NULL;
|
||||
|
||||
if (!_glfw.vk.extensions[0])
|
||||
return NULL;
|
||||
|
||||
*count = 2;
|
||||
return (const char**) _glfw.vk.extensions;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue