2015-08-10 18:19:04 +00:00
|
|
|
//========================================================================
|
2019-04-16 12:43:29 +00:00
|
|
|
// GLFW 3.4 - www.glfw.org
|
2015-08-10 18:19:04 +00:00
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Copyright (c) 2002-2006 Marcus Geelnard
|
2019-04-15 18:50:00 +00:00
|
|
|
// Copyright (c) 2006-2018 Camilla Löwy <elmindreda@glfw.org>
|
2015-08-10 18:19:04 +00:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied
|
|
|
|
// warranty. In no event will the authors be held liable for any damages
|
|
|
|
// arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it
|
|
|
|
// freely, subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented; you must not
|
|
|
|
// claim that you wrote the original software. If you use this software
|
|
|
|
// in a product, an acknowledgment in the product documentation would
|
|
|
|
// be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such, and must not
|
|
|
|
// be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
//========================================================================
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
#define _GLFW_FIND_LOADER 1
|
|
|
|
#define _GLFW_REQUIRE_LOADER 2
|
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW internal API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
GLFWbool _glfwInitVulkan(int mode)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
VkResult err;
|
|
|
|
VkExtensionProperties* ep;
|
2021-10-21 19:54:50 +00:00
|
|
|
PFN_vkEnumerateInstanceExtensionProperties vkEnumerateInstanceExtensionProperties;
|
2016-03-23 09:24:01 +00:00
|
|
|
uint32_t i, count;
|
2016-08-03 18:20:30 +00:00
|
|
|
|
2016-10-13 23:46:56 +00:00
|
|
|
if (_glfw.vk.available)
|
|
|
|
return GLFW_TRUE;
|
|
|
|
|
2021-10-21 18:45:44 +00:00
|
|
|
if (_glfw.hints.init.vulkanLoader)
|
|
|
|
_glfw.vk.GetInstanceProcAddr = _glfw.hints.init.vulkanLoader;
|
|
|
|
else
|
|
|
|
{
|
2017-09-10 19:02:26 +00:00
|
|
|
#if defined(_GLFW_VULKAN_LIBRARY)
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfw.vk.handle = _glfwPlatformLoadModule(_GLFW_VULKAN_LIBRARY);
|
2017-09-10 19:02:26 +00:00
|
|
|
#elif defined(_GLFW_WIN32)
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfw.vk.handle = _glfwPlatformLoadModule("vulkan-1.dll");
|
2016-10-13 23:46:56 +00:00
|
|
|
#elif defined(_GLFW_COCOA)
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.1.dylib");
|
|
|
|
if (!_glfw.vk.handle)
|
|
|
|
_glfw.vk.handle = _glfwLoadLocalVulkanLoaderCocoa();
|
2022-02-23 17:47:30 +00:00
|
|
|
#elif defined(__OpenBSD__) || defined(__NetBSD__)
|
2021-12-22 21:19:25 +00:00
|
|
|
_glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.so");
|
2015-08-10 18:19:04 +00:00
|
|
|
#else
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfw.vk.handle = _glfwPlatformLoadModule("libvulkan.so.1");
|
2015-08-10 18:19:04 +00:00
|
|
|
#endif
|
2021-10-21 18:45:44 +00:00
|
|
|
if (!_glfw.vk.handle)
|
|
|
|
{
|
|
|
|
if (mode == _GLFW_REQUIRE_LOADER)
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE, "Vulkan: Loader not found");
|
2016-10-31 00:42:04 +00:00
|
|
|
|
2021-10-21 18:45:44 +00:00
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfw.vk.GetInstanceProcAddr = (PFN_vkGetInstanceProcAddr)
|
|
|
|
_glfwPlatformGetModuleSymbol(_glfw.vk.handle, "vkGetInstanceProcAddr");
|
|
|
|
if (!_glfw.vk.GetInstanceProcAddr)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"Vulkan: Loader does not export vkGetInstanceProcAddr");
|
2016-07-20 13:11:02 +00:00
|
|
|
|
2021-10-21 18:45:44 +00:00
|
|
|
_glfwTerminateVulkan();
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 19:54:50 +00:00
|
|
|
vkEnumerateInstanceExtensionProperties = (PFN_vkEnumerateInstanceExtensionProperties)
|
2016-02-17 07:55:24 +00:00
|
|
|
vkGetInstanceProcAddr(NULL, "vkEnumerateInstanceExtensionProperties");
|
2021-10-21 19:54:50 +00:00
|
|
|
if (!vkEnumerateInstanceExtensionProperties)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"Vulkan: Failed to retrieve vkEnumerateInstanceExtensionProperties");
|
2016-07-20 13:11:02 +00:00
|
|
|
|
|
|
|
_glfwTerminateVulkan();
|
|
|
|
return GLFW_FALSE;
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
2016-08-03 18:20:30 +00:00
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
err = vkEnumerateInstanceExtensionProperties(NULL, &count, NULL);
|
|
|
|
if (err)
|
|
|
|
{
|
2017-02-07 19:08:14 +00:00
|
|
|
// NOTE: This happens on systems with a loader but without any Vulkan ICD
|
|
|
|
if (mode == _GLFW_REQUIRE_LOADER)
|
|
|
|
{
|
2017-02-07 19:56:48 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2017-02-07 19:08:14 +00:00
|
|
|
"Vulkan: Failed to query instance extension count: %s",
|
|
|
|
_glfwGetVulkanResultString(err));
|
|
|
|
}
|
2016-07-20 13:11:02 +00:00
|
|
|
|
|
|
|
_glfwTerminateVulkan();
|
|
|
|
return GLFW_FALSE;
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
ep = _glfw_calloc(count, sizeof(VkExtensionProperties));
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
err = vkEnumerateInstanceExtensionProperties(NULL, &count, ep);
|
|
|
|
if (err)
|
|
|
|
{
|
2017-02-07 19:56:48 +00:00
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
2015-08-10 18:19:04 +00:00
|
|
|
"Vulkan: Failed to query instance extensions: %s",
|
|
|
|
_glfwGetVulkanResultString(err));
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
_glfw_free(ep);
|
2016-07-20 13:11:02 +00:00
|
|
|
_glfwTerminateVulkan();
|
|
|
|
return GLFW_FALSE;
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(ep[i].extensionName, "VK_KHR_surface") == 0)
|
|
|
|
_glfw.vk.KHR_surface = GLFW_TRUE;
|
2016-09-14 13:18:07 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_KHR_win32_surface") == 0)
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfw.vk.KHR_win32_surface = GLFW_TRUE;
|
2016-10-13 23:46:56 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_MVK_macos_surface") == 0)
|
|
|
|
_glfw.vk.MVK_macos_surface = GLFW_TRUE;
|
2020-01-05 15:46:42 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_EXT_metal_surface") == 0)
|
|
|
|
_glfw.vk.EXT_metal_surface = GLFW_TRUE;
|
2016-09-14 13:18:07 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_KHR_xlib_surface") == 0)
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfw.vk.KHR_xlib_surface = GLFW_TRUE;
|
2016-09-14 13:18:07 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_KHR_xcb_surface") == 0)
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfw.vk.KHR_xcb_surface = GLFW_TRUE;
|
2016-09-14 13:18:07 +00:00
|
|
|
else if (strcmp(ep[i].extensionName, "VK_KHR_wayland_surface") == 0)
|
2015-08-10 18:19:04 +00:00
|
|
|
_glfw.vk.KHR_wayland_surface = GLFW_TRUE;
|
|
|
|
}
|
|
|
|
|
2021-08-03 18:53:48 +00:00
|
|
|
_glfw_free(ep);
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
_glfw.vk.available = GLFW_TRUE;
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
_glfw.platform.getRequiredInstanceExtensions(_glfw.vk.extensions);
|
2015-08-10 18:19:04 +00:00
|
|
|
|
2016-07-20 13:11:02 +00:00
|
|
|
return GLFW_TRUE;
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _glfwTerminateVulkan(void)
|
|
|
|
{
|
|
|
|
if (_glfw.vk.handle)
|
2021-07-16 12:57:22 +00:00
|
|
|
_glfwPlatformFreeModule(_glfw.vk.handle);
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* _glfwGetVulkanResultString(VkResult result)
|
|
|
|
{
|
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case VK_SUCCESS:
|
|
|
|
return "Success";
|
|
|
|
case VK_NOT_READY:
|
|
|
|
return "A fence or query has not yet completed";
|
|
|
|
case VK_TIMEOUT:
|
|
|
|
return "A wait operation has not completed in the specified time";
|
|
|
|
case VK_EVENT_SET:
|
|
|
|
return "An event is signaled";
|
|
|
|
case VK_EVENT_RESET:
|
|
|
|
return "An event is unsignaled";
|
|
|
|
case VK_INCOMPLETE:
|
|
|
|
return "A return array was too small for the result";
|
|
|
|
case VK_ERROR_OUT_OF_HOST_MEMORY:
|
|
|
|
return "A host memory allocation has failed";
|
|
|
|
case VK_ERROR_OUT_OF_DEVICE_MEMORY:
|
|
|
|
return "A device memory allocation has failed";
|
|
|
|
case VK_ERROR_INITIALIZATION_FAILED:
|
|
|
|
return "Initialization of an object could not be completed for implementation-specific reasons";
|
|
|
|
case VK_ERROR_DEVICE_LOST:
|
|
|
|
return "The logical or physical device has been lost";
|
|
|
|
case VK_ERROR_MEMORY_MAP_FAILED:
|
|
|
|
return "Mapping of a memory object has failed";
|
|
|
|
case VK_ERROR_LAYER_NOT_PRESENT:
|
|
|
|
return "A requested layer is not present or could not be loaded";
|
|
|
|
case VK_ERROR_EXTENSION_NOT_PRESENT:
|
|
|
|
return "A requested extension is not supported";
|
|
|
|
case VK_ERROR_FEATURE_NOT_PRESENT:
|
|
|
|
return "A requested feature is not supported";
|
|
|
|
case VK_ERROR_INCOMPATIBLE_DRIVER:
|
|
|
|
return "The requested version of Vulkan is not supported by the driver or is otherwise incompatible";
|
|
|
|
case VK_ERROR_TOO_MANY_OBJECTS:
|
|
|
|
return "Too many objects of the type have already been created";
|
|
|
|
case VK_ERROR_FORMAT_NOT_SUPPORTED:
|
|
|
|
return "A requested format is not supported on this device";
|
|
|
|
case VK_ERROR_SURFACE_LOST_KHR:
|
|
|
|
return "A surface is no longer available";
|
|
|
|
case VK_SUBOPTIMAL_KHR:
|
|
|
|
return "A swapchain no longer matches the surface properties exactly, but can still be used";
|
|
|
|
case VK_ERROR_OUT_OF_DATE_KHR:
|
|
|
|
return "A surface has changed in such a way that it is no longer compatible with the swapchain";
|
|
|
|
case VK_ERROR_INCOMPATIBLE_DISPLAY_KHR:
|
|
|
|
return "The display used by a swapchain does not use the same presentable image layout";
|
|
|
|
case VK_ERROR_NATIVE_WINDOW_IN_USE_KHR:
|
|
|
|
return "The requested window is already connected to a VkSurfaceKHR, or to some other non-Vulkan API";
|
|
|
|
case VK_ERROR_VALIDATION_FAILED_EXT:
|
|
|
|
return "A validation layer found an error";
|
|
|
|
default:
|
2016-02-17 20:30:17 +00:00
|
|
|
return "ERROR: UNKNOWN VULKAN ERROR";
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
////// GLFW public API //////
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
GLFWAPI int glfwVulkanSupported(void)
|
|
|
|
{
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_FALSE);
|
2016-10-31 00:42:04 +00:00
|
|
|
return _glfwInitVulkan(_GLFW_FIND_LOADER);
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 09:24:01 +00:00
|
|
|
GLFWAPI const char** glfwGetRequiredInstanceExtensions(uint32_t* count)
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(count != NULL);
|
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
*count = 0;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
if (!_glfwInitVulkan(_GLFW_REQUIRE_LOADER))
|
2015-08-10 18:19:04 +00:00
|
|
|
return NULL;
|
|
|
|
|
2016-11-07 18:43:15 +00:00
|
|
|
if (!_glfw.vk.extensions[0])
|
|
|
|
return NULL;
|
|
|
|
|
2016-08-22 18:25:52 +00:00
|
|
|
*count = 2;
|
2015-08-10 18:19:04 +00:00
|
|
|
return (const char**) _glfw.vk.extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI GLFWvkproc glfwGetInstanceProcAddress(VkInstance instance,
|
|
|
|
const char* procname)
|
|
|
|
{
|
|
|
|
GLFWvkproc proc;
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(procname != NULL);
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(NULL);
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
if (!_glfwInitVulkan(_GLFW_REQUIRE_LOADER))
|
2015-08-10 18:19:04 +00:00
|
|
|
return NULL;
|
|
|
|
|
2021-10-21 18:45:44 +00:00
|
|
|
// NOTE: Vulkan 1.0 and 1.1 vkGetInstanceProcAddr cannot return itself
|
|
|
|
if (strcmp(procname, "vkGetInstanceProcAddr") == 0)
|
|
|
|
return (GLFWvkproc) vkGetInstanceProcAddr;
|
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
proc = (GLFWvkproc) vkGetInstanceProcAddr(instance, procname);
|
2016-11-01 18:24:36 +00:00
|
|
|
if (!proc)
|
|
|
|
{
|
2021-10-21 18:45:44 +00:00
|
|
|
if (_glfw.vk.handle)
|
|
|
|
proc = (GLFWvkproc) _glfwPlatformGetModuleSymbol(_glfw.vk.handle, procname);
|
2016-11-01 18:24:36 +00:00
|
|
|
}
|
2015-08-10 18:19:04 +00:00
|
|
|
|
|
|
|
return proc;
|
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI int glfwGetPhysicalDevicePresentationSupport(VkInstance instance,
|
|
|
|
VkPhysicalDevice device,
|
|
|
|
uint32_t queuefamily)
|
|
|
|
{
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(instance != VK_NULL_HANDLE);
|
|
|
|
assert(device != VK_NULL_HANDLE);
|
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(GLFW_FALSE);
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
if (!_glfwInitVulkan(_GLFW_REQUIRE_LOADER))
|
2015-08-10 18:19:04 +00:00
|
|
|
return GLFW_FALSE;
|
|
|
|
|
2016-09-28 13:49:43 +00:00
|
|
|
if (!_glfw.vk.extensions[0])
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"Vulkan: Window surface creation extensions not found");
|
|
|
|
return GLFW_FALSE;
|
|
|
|
}
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
return _glfw.platform.getPhysicalDevicePresentationSupport(instance,
|
|
|
|
device,
|
|
|
|
queuefamily);
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLFWAPI VkResult glfwCreateWindowSurface(VkInstance instance,
|
|
|
|
GLFWwindow* handle,
|
|
|
|
const VkAllocationCallbacks* allocator,
|
|
|
|
VkSurfaceKHR* surface)
|
|
|
|
{
|
|
|
|
_GLFWwindow* window = (_GLFWwindow*) handle;
|
2017-02-23 16:47:41 +00:00
|
|
|
assert(instance != VK_NULL_HANDLE);
|
2016-03-02 16:58:05 +00:00
|
|
|
assert(window != NULL);
|
|
|
|
assert(surface != NULL);
|
2016-07-20 13:14:19 +00:00
|
|
|
|
2015-08-10 18:19:04 +00:00
|
|
|
*surface = VK_NULL_HANDLE;
|
|
|
|
|
|
|
|
_GLFW_REQUIRE_INIT_OR_RETURN(VK_ERROR_INITIALIZATION_FAILED);
|
|
|
|
|
2016-10-31 00:42:04 +00:00
|
|
|
if (!_glfwInitVulkan(_GLFW_REQUIRE_LOADER))
|
2015-08-10 18:19:04 +00:00
|
|
|
return VK_ERROR_INITIALIZATION_FAILED;
|
|
|
|
|
2016-09-28 13:49:43 +00:00
|
|
|
if (!_glfw.vk.extensions[0])
|
2015-08-10 18:19:04 +00:00
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_API_UNAVAILABLE,
|
|
|
|
"Vulkan: Window surface creation extensions not found");
|
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
}
|
|
|
|
|
2018-01-30 18:25:17 +00:00
|
|
|
if (window->context.client != GLFW_NO_API)
|
|
|
|
{
|
|
|
|
_glfwInputError(GLFW_INVALID_VALUE,
|
|
|
|
"Vulkan: Window surface creation requires the window to have the client API set to GLFW_NO_API");
|
|
|
|
return VK_ERROR_NATIVE_WINDOW_IN_USE_KHR;
|
|
|
|
}
|
|
|
|
|
2021-07-13 19:50:09 +00:00
|
|
|
return _glfw.platform.createWindowSurface(instance, window, allocator, surface);
|
2015-08-10 18:19:04 +00:00
|
|
|
}
|
|
|
|
|