This commit is contained in:
GameParrot 2023-01-26 19:33:12 +01:00 committed by GitHub
commit 9a689b88e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -468,7 +468,7 @@ void* _glfwLoadLocalVulkanLoaderCocoa(void)
return NULL;
CFURLRef loaderUrl = CFURLCreateCopyAppendingPathComponent(
kCFAllocatorDefault, frameworksUrl, CFSTR("libvulkan.1.dylib"), false);
kCFAllocatorDefault, frameworksUrl, CFSTR("libMoltenVK.dylib"), false);
if (!loaderUrl)
{
CFRelease(frameworksUrl);

View File

@ -60,7 +60,7 @@ GLFWbool _glfwInitVulkan(int mode)
#elif defined(_GLFW_WIN32)
_glfw.vk.handle = _glfwPlatformLoadModule("vulkan-1.dll");
#elif defined(_GLFW_COCOA)
_glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.1.dylib");
_glfw.vk.handle = _glfwPlatformLoadModule("libMoltenVK.dylib");
if (!_glfw.vk.handle)
_glfw.vk.handle = _glfwLoadLocalVulkanLoaderCocoa();
#elif defined(__OpenBSD__) || defined(__NetBSD__)