From 28e66f717a1627e251b24f639a7592ec1785d91b Mon Sep 17 00:00:00 2001 From: Curi0 Date: Tue, 26 Sep 2017 11:37:36 +0530 Subject: [PATCH] Fix Vulkan library loading on Android --- src/vulkan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vulkan.c b/src/vulkan.c index 70730407d..7a09be54d 100644 --- a/src/vulkan.c +++ b/src/vulkan.c @@ -53,6 +53,8 @@ GLFWbool _glfwInitVulkan(int mode) _glfw.vk.handle = _glfw_dlopen("vulkan-1.dll"); #elif defined(_GLFW_COCOA) _glfw.vk.handle = _glfw_dlopen("libMoltenVK.dylib"); +#elif defined(_GLFW_ANDROID) + _glfw.vk.handle = _glfw_dlopen("libvulkan.so"); #else _glfw.vk.handle = _glfw_dlopen("libvulkan.so.1"); #endif