mirror of
https://github.com/glfw/glfw.git
synced 2025-10-03 13:20:58 +00:00
fix a wrong string literal
This commit is contained in:
parent
e58b288a33
commit
57aec5e03b
@ -132,7 +132,7 @@ GLFWbool _glfwInitVulkan(int mode)
|
||||
else if (strcmp(ep[i].extensionName, "VK_MVK_macos_surface") == 0)
|
||||
_glfw.vk.MVK_macos_surface = GLFW_TRUE;
|
||||
#elif defined(VK_USE_PLATFORM_METAL_EXT)
|
||||
else if (strcmp(ep[i].extensionName, "VK_MVK_macos_surface") == 0)
|
||||
else if (strcmp(ep[i].extensionName, "VK_EXT_metal_surface") == 0)
|
||||
_glfw.vk.EXT_metal_surface = GLFW_TRUE;
|
||||
#endif
|
||||
#elif defined(_GLFW_X11)
|
||||
|
Loading…
Reference in New Issue
Block a user