2020-06-10 19:39:14 +00:00
|
|
|
/*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
|
|
|
|
* documentation files (the “Software”), to deal in the Software without restriction, including without
|
|
|
|
* limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
|
|
* LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Copyright © 2020 Charles Giessen (charles@lunarg.com)
|
|
|
|
*/
|
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
#include "VkBootstrap.h"
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
#include <fcntl.h>
|
|
|
|
#define NOMINMAX
|
|
|
|
#include <windows.h>
|
|
|
|
#endif // _WIN32
|
|
|
|
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
#include <dlfcn.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <mutex>
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
namespace vkb {
|
|
|
|
|
|
|
|
namespace detail {
|
2020-03-08 04:57:49 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
class VulkanFunctions {
|
|
|
|
private:
|
|
|
|
std::mutex init_mutex;
|
|
|
|
struct VulkanLibrary {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
void* library;
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
HMODULE library;
|
|
|
|
#endif
|
|
|
|
PFN_vkGetInstanceProcAddr ptr_vkGetInstanceProcAddr = VK_NULL_HANDLE;
|
|
|
|
|
|
|
|
VulkanLibrary () {
|
|
|
|
#if defined(__linux__)
|
|
|
|
library = dlopen ("libvulkan.so.1", RTLD_NOW | RTLD_LOCAL);
|
|
|
|
if (!library) library = dlopen ("libvulkan.so", RTLD_NOW | RTLD_LOCAL);
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
library = dlopen ("libvulkan.dylib", RTLD_NOW | RTLD_LOCAL);
|
|
|
|
if (!library) library = dlopen ("libvulkan.1.dylib", RTLD_NOW | RTLD_LOCAL);
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
library = LoadLibrary (TEXT ("vulkan-1.dll"));
|
|
|
|
#else
|
|
|
|
assert (false && "Unsupported platform");
|
|
|
|
#endif
|
|
|
|
if (!library) return;
|
|
|
|
load_func (ptr_vkGetInstanceProcAddr, "vkGetInstanceProcAddr");
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> void load_func (T& func_dest, const char* func_name) {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
func_dest = reinterpret_cast<T> (dlsym (library, func_name));
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
func_dest = reinterpret_cast<T> (GetProcAddress (library, func_name));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
void close () {
|
|
|
|
#if defined(__linux__) || defined(__APPLE__)
|
|
|
|
dlclose (library);
|
|
|
|
#elif defined(_WIN32)
|
|
|
|
FreeLibrary (library);
|
|
|
|
#endif
|
|
|
|
library = 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
VulkanLibrary& get_vulkan_library () {
|
|
|
|
static VulkanLibrary lib;
|
|
|
|
return lib;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool load_vulkan (PFN_vkGetInstanceProcAddr fp_vkGetInstanceProcAddr = nullptr) {
|
|
|
|
if (fp_vkGetInstanceProcAddr != nullptr) {
|
|
|
|
ptr_vkGetInstanceProcAddr = fp_vkGetInstanceProcAddr;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
auto& lib = get_vulkan_library ();
|
|
|
|
ptr_vkGetInstanceProcAddr = lib.ptr_vkGetInstanceProcAddr;
|
|
|
|
return lib.library != nullptr && lib.ptr_vkGetInstanceProcAddr != VK_NULL_HANDLE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> void get_proc_addr (T& out_ptr, const char* func_name) {
|
|
|
|
out_ptr = reinterpret_cast<T> (ptr_vkGetInstanceProcAddr (instance, func_name));
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_pre_instance_funcs () {
|
|
|
|
get_proc_addr (fp_vkEnumerateInstanceExtensionProperties, "vkEnumerateInstanceExtensionProperties");
|
|
|
|
get_proc_addr (fp_vkEnumerateInstanceLayerProperties, "vkEnumerateInstanceLayerProperties");
|
|
|
|
get_proc_addr (fp_vkEnumerateInstanceVersion, "vkEnumerateInstanceVersion");
|
|
|
|
get_proc_addr (fp_vkCreateInstance, "vkCreateInstance");
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
PFN_vkGetInstanceProcAddr ptr_vkGetInstanceProcAddr = nullptr;
|
|
|
|
VkInstance instance = nullptr;
|
|
|
|
|
|
|
|
PFN_vkEnumerateInstanceExtensionProperties fp_vkEnumerateInstanceExtensionProperties = nullptr;
|
|
|
|
PFN_vkEnumerateInstanceLayerProperties fp_vkEnumerateInstanceLayerProperties = nullptr;
|
|
|
|
PFN_vkEnumerateInstanceVersion fp_vkEnumerateInstanceVersion = nullptr;
|
|
|
|
PFN_vkCreateInstance fp_vkCreateInstance = nullptr;
|
|
|
|
PFN_vkDestroyInstance fp_vkDestroyInstance = nullptr;
|
|
|
|
|
|
|
|
PFN_vkEnumeratePhysicalDevices fp_vkEnumeratePhysicalDevices = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceFeatures fp_vkGetPhysicalDeviceFeatures = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceFeatures2 fp_vkGetPhysicalDeviceFeatures2 = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceFormatProperties fp_vkGetPhysicalDeviceFormatProperties = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceImageFormatProperties fp_vkGetPhysicalDeviceImageFormatProperties = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceProperties fp_vkGetPhysicalDeviceProperties = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceProperties2 fp_vkGetPhysicalDeviceProperties2 = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceQueueFamilyProperties fp_vkGetPhysicalDeviceQueueFamilyProperties = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceQueueFamilyProperties2 fp_vkGetPhysicalDeviceQueueFamilyProperties2 = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceMemoryProperties fp_vkGetPhysicalDeviceMemoryProperties = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceFormatProperties2 fp_vkGetPhysicalDeviceFormatProperties2 = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceMemoryProperties2 fp_vkGetPhysicalDeviceMemoryProperties2 = nullptr;
|
|
|
|
|
|
|
|
PFN_vkCreateDevice fp_vkCreateDevice = nullptr;
|
|
|
|
PFN_vkDestroyDevice fp_vkDestroyDevice = nullptr;
|
|
|
|
PFN_vkEnumerateDeviceExtensionProperties fp_vkEnumerateDeviceExtensionProperties = nullptr;
|
|
|
|
PFN_vkGetDeviceQueue fp_vkGetDeviceQueue = nullptr;
|
|
|
|
|
|
|
|
PFN_vkCreateImageView fp_vkCreateImageView = nullptr;
|
|
|
|
PFN_vkDestroyImageView fp_vkDestroyImageView = nullptr;
|
|
|
|
|
|
|
|
PFN_vkDestroySurfaceKHR fp_vkDestroySurfaceKHR = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceSurfaceSupportKHR fp_vkGetPhysicalDeviceSurfaceSupportKHR = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceSurfaceFormatsKHR fp_vkGetPhysicalDeviceSurfaceFormatsKHR = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceSurfacePresentModesKHR fp_vkGetPhysicalDeviceSurfacePresentModesKHR = nullptr;
|
|
|
|
PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR fp_vkGetPhysicalDeviceSurfaceCapabilitiesKHR = nullptr;
|
|
|
|
PFN_vkCreateSwapchainKHR fp_vkCreateSwapchainKHR = nullptr;
|
|
|
|
PFN_vkDestroySwapchainKHR fp_vkDestroySwapchainKHR = nullptr;
|
|
|
|
PFN_vkGetSwapchainImagesKHR fp_vkGetSwapchainImagesKHR = nullptr;
|
|
|
|
|
|
|
|
bool init_vulkan_funcs (PFN_vkGetInstanceProcAddr fp_vkGetInstanceProcAddr) {
|
|
|
|
std::lock_guard<std::mutex> lg (init_mutex);
|
|
|
|
if (!load_vulkan (fp_vkGetInstanceProcAddr)) return false;
|
|
|
|
init_pre_instance_funcs ();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> void get_inst_proc_addr (T& out_ptr, const char* func_name) {
|
|
|
|
std::lock_guard<std::mutex> lg (init_mutex);
|
|
|
|
get_proc_addr (out_ptr, func_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_instance_funcs (VkInstance inst) {
|
|
|
|
std::lock_guard<std::mutex> lg (init_mutex);
|
|
|
|
|
|
|
|
instance = inst;
|
|
|
|
get_proc_addr (fp_vkDestroyInstance, "vkDestroyInstance");
|
|
|
|
get_proc_addr (fp_vkEnumeratePhysicalDevices, "vkEnumeratePhysicalDevices");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceFeatures, "vkGetPhysicalDeviceFeatures");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceFeatures2, "vkGetPhysicalDeviceFeatures2");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceFormatProperties, "vkGetPhysicalDeviceFormatProperties");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceImageFormatProperties, "vkGetPhysicalDeviceImageFormatProperties");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceProperties, "vkGetPhysicalDeviceProperties");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceProperties2, "vkGetPhysicalDeviceProperties2");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceQueueFamilyProperties, "vkGetPhysicalDeviceQueueFamilyProperties");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceQueueFamilyProperties2, "vkGetPhysicalDeviceQueueFamilyProperties2");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceMemoryProperties, "vkGetPhysicalDeviceMemoryProperties");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceFormatProperties2, "vkGetPhysicalDeviceFormatProperties2");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceMemoryProperties2, "vkGetPhysicalDeviceMemoryProperties2");
|
|
|
|
|
|
|
|
get_proc_addr (fp_vkCreateDevice, "vkCreateDevice");
|
|
|
|
get_proc_addr (fp_vkDestroyDevice, "vkDestroyDevice");
|
|
|
|
get_proc_addr (fp_vkEnumerateDeviceExtensionProperties, "vkEnumerateDeviceExtensionProperties");
|
|
|
|
get_proc_addr (fp_vkGetDeviceQueue, "vkGetDeviceQueue");
|
|
|
|
|
|
|
|
get_proc_addr (fp_vkCreateImageView, "vkCreateImageView");
|
|
|
|
get_proc_addr (fp_vkDestroyImageView, "vkDestroyImageView");
|
|
|
|
|
|
|
|
get_proc_addr (fp_vkDestroySurfaceKHR, "vkDestroySurfaceKHR");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceSurfaceSupportKHR, "vkGetPhysicalDeviceSurfaceSupportKHR");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceSurfaceFormatsKHR, "vkGetPhysicalDeviceSurfaceFormatsKHR");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceSurfacePresentModesKHR, "vkGetPhysicalDeviceSurfacePresentModesKHR");
|
|
|
|
get_proc_addr (fp_vkGetPhysicalDeviceSurfaceCapabilitiesKHR, "vkGetPhysicalDeviceSurfaceCapabilitiesKHR");
|
|
|
|
get_proc_addr (fp_vkCreateSwapchainKHR, "vkCreateSwapchainKHR");
|
|
|
|
get_proc_addr (fp_vkDestroySwapchainKHR, "vkDestroySwapchainKHR");
|
|
|
|
get_proc_addr (fp_vkGetSwapchainImagesKHR, "vkGetSwapchainImagesKHR");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-09-26 18:15:40 +00:00
|
|
|
VulkanFunctions& vulkan_functions () {
|
|
|
|
static VulkanFunctions v;
|
|
|
|
return v;
|
|
|
|
}
|
2020-03-08 04:57:49 +00:00
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
// Helper for robustly executing the two-call pattern
|
|
|
|
template <typename T, typename F, typename... Ts>
|
2020-05-17 13:31:02 +00:00
|
|
|
auto get_vector (std::vector<T>& out, F&& f, Ts&&... ts) -> VkResult {
|
2020-02-06 22:46:14 +00:00
|
|
|
uint32_t count = 0;
|
|
|
|
VkResult err;
|
|
|
|
do {
|
|
|
|
err = f (ts..., &count, nullptr);
|
|
|
|
if (err) {
|
2020-02-10 18:29:09 +00:00
|
|
|
return err;
|
2020-02-06 22:46:14 +00:00
|
|
|
};
|
2020-05-17 13:31:02 +00:00
|
|
|
out.resize (count);
|
|
|
|
err = f (ts..., &count, out.data ());
|
2020-06-17 23:13:39 +00:00
|
|
|
out.resize (count);
|
2020-02-06 22:46:14 +00:00
|
|
|
} while (err == VK_INCOMPLETE);
|
2020-05-17 13:31:02 +00:00
|
|
|
return err;
|
2020-02-06 22:46:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, typename F, typename... Ts>
|
|
|
|
auto get_vector_noerror (F&& f, Ts&&... ts) -> std::vector<T> {
|
|
|
|
uint32_t count = 0;
|
|
|
|
std::vector<T> results;
|
|
|
|
f (ts..., &count, nullptr);
|
|
|
|
results.resize (count);
|
|
|
|
f (ts..., &count, results.data ());
|
2020-06-17 23:13:39 +00:00
|
|
|
results.resize (count);
|
2020-02-06 22:46:14 +00:00
|
|
|
return results;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
const char* to_string_message_severity (VkDebugUtilsMessageSeverityFlagBitsEXT s) {
|
|
|
|
switch (s) {
|
2020-01-31 22:23:22 +00:00
|
|
|
case VkDebugUtilsMessageSeverityFlagBitsEXT::VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT:
|
|
|
|
return "VERBOSE";
|
|
|
|
case VkDebugUtilsMessageSeverityFlagBitsEXT::VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT:
|
|
|
|
return "ERROR";
|
|
|
|
case VkDebugUtilsMessageSeverityFlagBitsEXT::VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT:
|
|
|
|
return "WARNING";
|
|
|
|
case VkDebugUtilsMessageSeverityFlagBitsEXT::VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT:
|
|
|
|
return "INFO";
|
|
|
|
default:
|
|
|
|
return "UNKNOWN";
|
|
|
|
}
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
const char* to_string_message_type (VkDebugUtilsMessageTypeFlagsEXT s) {
|
2020-03-07 09:11:32 +00:00
|
|
|
if (s == 7) return "General | Validation | Performance";
|
|
|
|
if (s == 6) return "Validation | Performance";
|
|
|
|
if (s == 5) return "General | Performance";
|
|
|
|
if (s == 4 /*VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT*/) return "Performance";
|
|
|
|
if (s == 3) return "General | Validation";
|
|
|
|
if (s == 2 /*VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT*/) return "Validation";
|
|
|
|
if (s == 1 /*VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT*/) return "General";
|
|
|
|
return "Unknown";
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkResult create_debug_utils_messenger (VkInstance instance,
|
|
|
|
PFN_vkDebugUtilsMessengerCallbackEXT debug_callback,
|
|
|
|
VkDebugUtilsMessageSeverityFlagsEXT severity,
|
|
|
|
VkDebugUtilsMessageTypeFlagsEXT type,
|
2020-03-07 22:33:17 +00:00
|
|
|
VkDebugUtilsMessengerEXT* pDebugMessenger,
|
|
|
|
VkAllocationCallbacks* allocation_callbacks) {
|
2020-03-08 04:57:49 +00:00
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
if (debug_callback == nullptr) debug_callback = default_debug_callback;
|
|
|
|
VkDebugUtilsMessengerCreateInfoEXT messengerCreateInfo = {};
|
|
|
|
messengerCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT;
|
|
|
|
messengerCreateInfo.pNext = nullptr;
|
|
|
|
messengerCreateInfo.messageSeverity = severity;
|
|
|
|
messengerCreateInfo.messageType = type;
|
|
|
|
messengerCreateInfo.pfnUserCallback = debug_callback;
|
|
|
|
|
2020-03-08 04:57:49 +00:00
|
|
|
PFN_vkCreateDebugUtilsMessengerEXT createMessengerFunc;
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().get_inst_proc_addr (createMessengerFunc, "vkCreateDebugUtilsMessengerEXT");
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-03-08 04:57:49 +00:00
|
|
|
if (createMessengerFunc != nullptr) {
|
|
|
|
return createMessengerFunc (instance, &messengerCreateInfo, allocation_callbacks, pDebugMessenger);
|
2020-02-06 22:46:14 +00:00
|
|
|
} else {
|
2020-01-31 22:23:22 +00:00
|
|
|
return VK_ERROR_EXTENSION_NOT_PRESENT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 22:33:17 +00:00
|
|
|
void destroy_debug_utils_messenger (
|
|
|
|
VkInstance instance, VkDebugUtilsMessengerEXT debugMessenger, VkAllocationCallbacks* allocation_callbacks) {
|
2020-06-17 23:13:39 +00:00
|
|
|
|
2020-03-08 04:57:49 +00:00
|
|
|
PFN_vkDestroyDebugUtilsMessengerEXT deleteMessengerFunc;
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().get_inst_proc_addr (deleteMessengerFunc, "vkDestroyDebugUtilsMessengerEXT");
|
2020-06-17 23:13:39 +00:00
|
|
|
|
2020-03-08 04:57:49 +00:00
|
|
|
if (deleteMessengerFunc != nullptr) {
|
|
|
|
deleteMessengerFunc (instance, debugMessenger, allocation_callbacks);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
VkBool32 default_debug_callback (VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
|
|
|
|
VkDebugUtilsMessageTypeFlagsEXT messageType,
|
|
|
|
const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData,
|
2020-03-15 01:57:40 +00:00
|
|
|
void*) {
|
2020-02-04 03:34:46 +00:00
|
|
|
auto ms = to_string_message_severity (messageSeverity);
|
|
|
|
auto mt = to_string_message_type (messageType);
|
2020-01-31 22:23:22 +00:00
|
|
|
printf ("[%s: %s]\n%s\n", ms, mt, pCallbackData->pMessage);
|
2020-03-08 05:58:23 +00:00
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
return VK_FALSE;
|
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
namespace detail {
|
2020-05-19 05:50:24 +00:00
|
|
|
bool check_layer_supported (std::vector<VkLayerProperties> const& available_layers, const char* layer_name) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if (!layer_name) return false;
|
|
|
|
for (const auto& layer_properties : available_layers) {
|
|
|
|
if (strcmp (layer_name, layer_properties.layerName) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-19 05:50:24 +00:00
|
|
|
bool check_layers_supported (std::vector<VkLayerProperties> const& available_layers,
|
|
|
|
std::vector<const char*> const& layer_names) {
|
2020-01-31 22:23:22 +00:00
|
|
|
bool all_found = true;
|
2020-02-06 22:46:14 +00:00
|
|
|
for (const auto& layer_name : layer_names) {
|
2020-02-18 22:18:08 +00:00
|
|
|
bool found = check_layer_supported (available_layers, layer_name);
|
2020-01-31 22:23:22 +00:00
|
|
|
if (!found) all_found = false;
|
|
|
|
}
|
|
|
|
return all_found;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
|
2020-05-19 05:50:24 +00:00
|
|
|
bool check_extension_supported (
|
|
|
|
std::vector<VkExtensionProperties> const& available_extensions, const char* extension_name) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if (!extension_name) return false;
|
2020-05-19 05:50:24 +00:00
|
|
|
for (const auto& extension_properties : available_extensions) {
|
|
|
|
if (strcmp (extension_name, extension_properties.extensionName) == 0) {
|
2020-02-18 22:18:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
2020-02-11 01:01:58 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-05-19 05:50:24 +00:00
|
|
|
bool check_extensions_supported (std::vector<VkExtensionProperties> const& available_extensions,
|
|
|
|
std::vector<const char*> const& extension_names) {
|
2020-02-11 01:01:58 +00:00
|
|
|
bool all_found = true;
|
|
|
|
for (const auto& extension_name : extension_names) {
|
2020-02-18 22:18:08 +00:00
|
|
|
bool found = check_extension_supported (available_extensions, extension_name);
|
2020-02-11 01:01:58 +00:00
|
|
|
if (!found) all_found = false;
|
|
|
|
}
|
|
|
|
return all_found;
|
|
|
|
}
|
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
template <typename T>
|
2020-02-17 21:09:40 +00:00
|
|
|
void setup_pNext_chain (T& structure, std::vector<VkBaseOutStructure*> const& structs) {
|
2020-01-31 22:23:22 +00:00
|
|
|
structure.pNext = nullptr;
|
|
|
|
if (structs.size () <= 0) return;
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < structs.size () - 1; i++) {
|
2020-02-17 21:09:40 +00:00
|
|
|
structs.at (i)->pNext = structs.at (i + 1);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-17 21:09:40 +00:00
|
|
|
structure.pNext = structs.at (0);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
const char* validation_layer_name = "VK_LAYER_KHRONOS_validation";
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
struct InstanceErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vkb_instance"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
return to_string (static_cast<InstanceError> (err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const InstanceErrorCategory instance_error_category;
|
|
|
|
|
|
|
|
struct PhysicalDeviceErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vkb_physical_device"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
return to_string (static_cast<PhysicalDeviceError> (err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const PhysicalDeviceErrorCategory physical_device_error_category;
|
|
|
|
|
|
|
|
struct QueueErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vkb_queue"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
return to_string (static_cast<QueueError> (err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const QueueErrorCategory queue_error_category;
|
|
|
|
|
|
|
|
struct DeviceErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vkb_device"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
return to_string (static_cast<DeviceError> (err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const DeviceErrorCategory device_error_category;
|
|
|
|
|
|
|
|
struct SwapchainErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vbk_swapchain"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
return to_string (static_cast<SwapchainError> (err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const SwapchainErrorCategory swapchain_error_category;
|
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
} // namespace detail
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
std::error_code make_error_code (InstanceError instance_error) {
|
|
|
|
return { static_cast<int> (instance_error), detail::instance_error_category };
|
|
|
|
}
|
|
|
|
std::error_code make_error_code (PhysicalDeviceError physical_device_error) {
|
|
|
|
return { static_cast<int> (physical_device_error), detail::physical_device_error_category };
|
|
|
|
}
|
|
|
|
std::error_code make_error_code (QueueError queue_error) {
|
|
|
|
return { static_cast<int> (queue_error), detail::queue_error_category };
|
|
|
|
}
|
|
|
|
std::error_code make_error_code (DeviceError device_error) {
|
|
|
|
return { static_cast<int> (device_error), detail::device_error_category };
|
|
|
|
}
|
|
|
|
std::error_code make_error_code (SwapchainError swapchain_error) {
|
|
|
|
return { static_cast<int> (swapchain_error), detail::swapchain_error_category };
|
|
|
|
}
|
|
|
|
|
2020-03-08 00:19:58 +00:00
|
|
|
const char* to_string (InstanceError err) {
|
|
|
|
switch (err) {
|
2020-03-09 21:10:11 +00:00
|
|
|
case InstanceError::vulkan_unavailable:
|
|
|
|
return "vulkan_unavailable";
|
|
|
|
case InstanceError::vulkan_version_unavailable:
|
|
|
|
return "vulkan_version_unavailable";
|
|
|
|
case InstanceError::vulkan_version_1_1_unavailable:
|
|
|
|
return "vulkan_version_1_1_unavailable";
|
|
|
|
case InstanceError::vulkan_version_1_2_unavailable:
|
|
|
|
return "vulkan_version_1_2_unavailable";
|
2020-03-08 00:19:58 +00:00
|
|
|
case InstanceError::failed_create_debug_messenger:
|
|
|
|
return "failed_create_debug_messenger";
|
|
|
|
case InstanceError::failed_create_instance:
|
|
|
|
return "failed_create_instance";
|
|
|
|
case InstanceError::requested_layers_not_present:
|
|
|
|
return "requested_layers_not_present";
|
|
|
|
case InstanceError::requested_extensions_not_present:
|
|
|
|
return "requested_extensions_not_present";
|
2020-05-26 19:33:40 +00:00
|
|
|
case InstanceError::windowing_extensions_not_present:
|
|
|
|
return "windowing_extensions_not_present";
|
2020-03-08 00:19:58 +00:00
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* to_string (PhysicalDeviceError err) {
|
|
|
|
switch (err) {
|
2020-03-10 03:53:10 +00:00
|
|
|
case PhysicalDeviceError::no_surface_provided:
|
|
|
|
return "no_surface_provided";
|
2020-03-08 00:19:58 +00:00
|
|
|
case PhysicalDeviceError::failed_enumerate_physical_devices:
|
|
|
|
return "failed_enumerate_physical_devices";
|
|
|
|
case PhysicalDeviceError::no_physical_devices_found:
|
|
|
|
return "no_physical_devices_found";
|
|
|
|
case PhysicalDeviceError::no_suitable_device:
|
|
|
|
return "no_suitable_device";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* to_string (QueueError err) {
|
|
|
|
switch (err) {
|
|
|
|
case QueueError::present_unavailable:
|
|
|
|
return "present_unavailable";
|
|
|
|
case QueueError::graphics_unavailable:
|
|
|
|
return "graphics_unavailable";
|
|
|
|
case QueueError::compute_unavailable:
|
|
|
|
return "compute_unavailable";
|
|
|
|
case QueueError::transfer_unavailable:
|
|
|
|
return "transfer_unavailable";
|
|
|
|
case QueueError::queue_index_out_of_range:
|
|
|
|
return "queue_index_out_of_range";
|
|
|
|
case QueueError::invalid_queue_family_index:
|
|
|
|
return "invalid_queue_family_index";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* to_string (DeviceError err) {
|
|
|
|
switch (err) {
|
|
|
|
case DeviceError::failed_create_device:
|
|
|
|
return "failed_create_device";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char* to_string (SwapchainError err) {
|
|
|
|
switch (err) {
|
2020-04-19 23:59:32 +00:00
|
|
|
case SwapchainError::surface_handle_not_provided:
|
|
|
|
return "surface_handle_not_provided";
|
2020-03-08 00:19:58 +00:00
|
|
|
case SwapchainError::failed_query_surface_support_details:
|
|
|
|
return "failed_query_surface_support_details";
|
|
|
|
case SwapchainError::failed_create_swapchain:
|
|
|
|
return "failed_create_swapchain";
|
|
|
|
case SwapchainError::failed_get_swapchain_images:
|
|
|
|
return "failed_get_swapchain_images";
|
|
|
|
case SwapchainError::failed_create_swapchain_image_views:
|
|
|
|
return "failed_create_swapchain_image_views";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
detail::Result<SystemInfo> SystemInfo::get_system_info () {
|
2020-09-26 18:15:40 +00:00
|
|
|
if (!detail::vulkan_functions ().init_vulkan_funcs (nullptr)) {
|
2020-06-17 23:13:39 +00:00
|
|
|
return make_error_code (InstanceError::vulkan_unavailable);
|
|
|
|
}
|
|
|
|
return SystemInfo ();
|
|
|
|
}
|
|
|
|
|
|
|
|
detail::Result<SystemInfo> SystemInfo::get_system_info (PFN_vkGetInstanceProcAddr fp_vkGetInstanceProcAddr) {
|
|
|
|
// Using externally provided function pointers, assume the loader is available
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().init_vulkan_funcs (fp_vkGetInstanceProcAddr);
|
2020-06-17 23:13:39 +00:00
|
|
|
return SystemInfo ();
|
|
|
|
}
|
|
|
|
|
2020-03-07 08:44:34 +00:00
|
|
|
SystemInfo::SystemInfo () {
|
2020-06-17 23:13:39 +00:00
|
|
|
auto available_layers_ret = detail::get_vector<VkLayerProperties> (
|
2020-09-26 18:15:40 +00:00
|
|
|
this->available_layers, detail::vulkan_functions ().fp_vkEnumerateInstanceLayerProperties);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (available_layers_ret != VK_SUCCESS) {
|
|
|
|
this->available_layers.clear ();
|
2020-03-07 08:44:34 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
|
2020-03-07 08:44:34 +00:00
|
|
|
for (auto& layer : this->available_layers)
|
2020-03-07 22:08:00 +00:00
|
|
|
if (strcmp (layer.layerName, detail::validation_layer_name) == 0)
|
|
|
|
validation_layers_available = true;
|
2020-05-19 05:50:24 +00:00
|
|
|
|
2020-09-26 18:15:40 +00:00
|
|
|
auto available_extensions_ret = detail::get_vector<VkExtensionProperties> (this->available_extensions,
|
|
|
|
detail::vulkan_functions ().fp_vkEnumerateInstanceExtensionProperties,
|
|
|
|
nullptr);
|
2020-05-19 05:50:24 +00:00
|
|
|
if (available_extensions_ret != VK_SUCCESS) {
|
|
|
|
this->available_extensions.clear ();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (auto& ext : this->available_extensions)
|
|
|
|
if (strcmp (ext.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0)
|
|
|
|
debug_utils_available = true;
|
|
|
|
|
|
|
|
for (auto& layer : this->available_layers) {
|
|
|
|
std::vector<VkExtensionProperties> layer_extensions;
|
2020-09-26 18:15:40 +00:00
|
|
|
auto layer_extensions_ret = detail::get_vector<VkExtensionProperties> (layer_extensions,
|
|
|
|
detail::vulkan_functions ().fp_vkEnumerateInstanceExtensionProperties,
|
|
|
|
layer.layerName);
|
2020-05-19 05:50:24 +00:00
|
|
|
if (layer_extensions_ret != VK_SUCCESS) {
|
|
|
|
for (auto& ext : layer_extensions)
|
|
|
|
if (strcmp (ext.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0)
|
|
|
|
debug_utils_available = true;
|
|
|
|
}
|
|
|
|
}
|
2020-03-07 08:44:34 +00:00
|
|
|
}
|
2020-03-08 05:21:27 +00:00
|
|
|
bool SystemInfo::is_extension_available (const char* extension_name) const {
|
2020-03-07 08:44:34 +00:00
|
|
|
if (!extension_name) return false;
|
|
|
|
return detail::check_extension_supported (available_extensions, extension_name);
|
|
|
|
}
|
2020-03-08 05:21:27 +00:00
|
|
|
bool SystemInfo::is_layer_available (const char* layer_name) const {
|
2020-03-07 08:44:34 +00:00
|
|
|
if (!layer_name) return false;
|
|
|
|
return detail::check_layer_supported (available_layers, layer_name);
|
|
|
|
}
|
2020-03-07 09:41:52 +00:00
|
|
|
|
2020-03-07 08:44:34 +00:00
|
|
|
void destroy_instance (Instance instance) {
|
|
|
|
if (instance.instance != VK_NULL_HANDLE) {
|
|
|
|
if (instance.debug_messenger != nullptr)
|
2020-03-07 22:33:17 +00:00
|
|
|
destroy_debug_utils_messenger (instance.instance, instance.debug_messenger, instance.allocation_callbacks);
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkDestroyInstance (instance.instance, instance.allocation_callbacks);
|
2020-02-18 22:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
InstanceBuilder::InstanceBuilder (PFN_vkGetInstanceProcAddr fp_vkGetInstanceProcAddr) {
|
|
|
|
info.fp_vkGetInstanceProcAddr = fp_vkGetInstanceProcAddr;
|
|
|
|
}
|
|
|
|
InstanceBuilder::InstanceBuilder () {}
|
2020-03-07 08:44:34 +00:00
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<Instance> InstanceBuilder::build () const {
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
auto sys_info_ret = SystemInfo::get_system_info ();
|
|
|
|
if (!sys_info_ret) return sys_info_ret.error ();
|
|
|
|
auto system = sys_info_ret.value ();
|
|
|
|
|
2020-03-09 21:10:11 +00:00
|
|
|
uint32_t api_version = VK_MAKE_VERSION (1, 0, 0);
|
|
|
|
|
2020-03-12 03:19:31 +00:00
|
|
|
if (info.required_api_version > VK_MAKE_VERSION (1, 0, 0) ||
|
|
|
|
info.desired_api_version > VK_MAKE_VERSION (1, 0, 0)) {
|
2020-06-17 23:13:39 +00:00
|
|
|
PFN_vkEnumerateInstanceVersion pfn_vkEnumerateInstanceVersion =
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkEnumerateInstanceVersion;
|
2020-03-09 21:10:11 +00:00
|
|
|
|
|
|
|
uint32_t queried_api_version = VK_MAKE_VERSION (1, 0, 0);
|
|
|
|
if (pfn_vkEnumerateInstanceVersion != nullptr) {
|
2020-03-22 19:47:05 +00:00
|
|
|
VkResult res = pfn_vkEnumerateInstanceVersion (&queried_api_version);
|
2020-03-09 21:10:11 +00:00
|
|
|
// Should always return VK_SUCCESS
|
|
|
|
if (res != VK_SUCCESS && info.required_api_version > 0)
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::vulkan_version_unavailable);
|
2020-03-09 21:10:11 +00:00
|
|
|
}
|
|
|
|
if (pfn_vkEnumerateInstanceVersion == nullptr || queried_api_version < info.required_api_version) {
|
|
|
|
if (VK_VERSION_MINOR (info.required_api_version) == 2)
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::vulkan_version_1_2_unavailable);
|
2020-03-09 21:10:11 +00:00
|
|
|
else if (VK_VERSION_MINOR (info.required_api_version))
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::vulkan_version_1_1_unavailable);
|
2020-03-09 21:10:11 +00:00
|
|
|
else
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::vulkan_version_unavailable);
|
2020-03-09 21:10:11 +00:00
|
|
|
}
|
|
|
|
if (info.required_api_version > VK_MAKE_VERSION (1, 0, 0)) {
|
|
|
|
api_version = info.required_api_version;
|
|
|
|
} else if (info.desired_api_version > VK_MAKE_VERSION (1, 0, 0)) {
|
|
|
|
if (queried_api_version >= info.desired_api_version)
|
|
|
|
api_version = info.desired_api_version;
|
|
|
|
else
|
|
|
|
api_version = queried_api_version;
|
2020-03-08 07:14:36 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-09 21:10:11 +00:00
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
VkApplicationInfo app_info = {};
|
|
|
|
app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
|
|
|
|
app_info.pNext = nullptr;
|
2020-02-17 20:22:49 +00:00
|
|
|
app_info.pApplicationName = info.app_name != nullptr ? info.app_name : "";
|
2020-01-31 22:23:22 +00:00
|
|
|
app_info.applicationVersion = info.application_version;
|
2020-02-17 20:22:49 +00:00
|
|
|
app_info.pEngineName = info.engine_name != nullptr ? info.engine_name : "";
|
2020-01-31 22:23:22 +00:00
|
|
|
app_info.engineVersion = info.engine_version;
|
2020-03-09 21:10:11 +00:00
|
|
|
app_info.apiVersion = api_version;
|
2020-01-31 22:23:22 +00:00
|
|
|
|
|
|
|
std::vector<const char*> extensions;
|
|
|
|
for (auto& ext : info.extensions)
|
2020-02-12 00:51:03 +00:00
|
|
|
extensions.push_back (ext);
|
2020-05-19 16:44:40 +00:00
|
|
|
if (info.debug_callback != nullptr && system.debug_utils_available) {
|
2020-02-12 00:51:03 +00:00
|
|
|
extensions.push_back (VK_EXT_DEBUG_UTILS_EXTENSION_NAME);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
if (!info.headless_context) {
|
2020-05-19 16:44:40 +00:00
|
|
|
auto check_add_window_ext = [&] (const char* name) -> bool {
|
2020-05-26 19:33:40 +00:00
|
|
|
if (!detail::check_extension_supported (system.available_extensions, name))
|
|
|
|
return false;
|
|
|
|
extensions.push_back (name);
|
|
|
|
return true;
|
2020-05-19 16:44:40 +00:00
|
|
|
};
|
|
|
|
bool khr_surface_added = check_add_window_ext ("VK_KHR_surface");
|
2020-01-31 22:23:22 +00:00
|
|
|
#if defined(_WIN32)
|
2020-05-26 19:33:40 +00:00
|
|
|
bool added_window_exts = check_add_window_ext ("VK_KHR_win32_surface");
|
2020-02-03 23:23:47 +00:00
|
|
|
#elif defined(__ANDROID__)
|
2020-05-26 19:33:40 +00:00
|
|
|
bool added_window_exts = check_add_window_ext ("VK_KHR_android_surface");
|
2020-01-31 22:23:22 +00:00
|
|
|
#elif defined(_DIRECT2DISPLAY)
|
2020-05-19 16:44:40 +00:00
|
|
|
bool added_window_exts = check_add_window_ext ("VK_KHR_display");
|
2020-02-03 23:23:47 +00:00
|
|
|
#elif defined(__linux__)
|
2020-05-26 19:33:40 +00:00
|
|
|
bool added_window_exts = check_add_window_ext ("VK_KHR_xcb_surface") ||
|
|
|
|
check_add_window_ext ("VK_KHR_xlib_surface") ||
|
|
|
|
check_add_window_ext ("VK_KHR_wayland_surface");
|
2020-02-03 23:23:47 +00:00
|
|
|
#elif defined(__APPLE__)
|
2020-05-19 16:44:40 +00:00
|
|
|
bool added_window_exts = check_add_window_ext ("VK_KHR_metal_surface");
|
2020-01-31 22:23:22 +00:00
|
|
|
#endif
|
2020-05-26 19:33:40 +00:00
|
|
|
if (!khr_surface_added || !added_window_exts)
|
|
|
|
return make_error_code (InstanceError::windowing_extensions_not_present);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
bool all_extensions_supported = detail::check_extensions_supported (system.available_extensions, extensions);
|
2020-02-11 01:01:58 +00:00
|
|
|
if (!all_extensions_supported) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::requested_extensions_not_present);
|
2020-02-11 01:01:58 +00:00
|
|
|
}
|
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
std::vector<const char*> layers;
|
|
|
|
for (auto& layer : info.layers)
|
2020-02-12 00:51:03 +00:00
|
|
|
layers.push_back (layer);
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
if (info.enable_validation_layers || (info.request_validation_layers && system.validation_layers_available)) {
|
2020-02-18 22:18:08 +00:00
|
|
|
layers.push_back (detail::validation_layer_name);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
bool all_layers_supported = detail::check_layers_supported (system.available_layers, layers);
|
2020-02-06 22:46:14 +00:00
|
|
|
if (!all_layers_supported) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (InstanceError::requested_layers_not_present);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
2020-03-08 05:21:27 +00:00
|
|
|
std::vector<VkBaseOutStructure*> pNext_chain;
|
|
|
|
|
2020-01-31 22:23:22 +00:00
|
|
|
VkDebugUtilsMessengerCreateInfoEXT messengerCreateInfo = {};
|
2020-02-06 22:46:14 +00:00
|
|
|
if (info.use_debug_messenger) {
|
2020-01-31 22:23:22 +00:00
|
|
|
messengerCreateInfo.sType = VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT;
|
|
|
|
messengerCreateInfo.pNext = nullptr;
|
|
|
|
messengerCreateInfo.messageSeverity = info.debug_message_severity;
|
|
|
|
messengerCreateInfo.messageType = info.debug_message_type;
|
|
|
|
messengerCreateInfo.pfnUserCallback = info.debug_callback;
|
2020-03-08 05:21:27 +00:00
|
|
|
pNext_chain.push_back (reinterpret_cast<VkBaseOutStructure*> (&messengerCreateInfo));
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkValidationFeaturesEXT features{};
|
2020-02-06 22:46:14 +00:00
|
|
|
if (info.enabled_validation_features.size () != 0 || info.disabled_validation_features.size ()) {
|
2020-01-31 22:23:22 +00:00
|
|
|
features.sType = VK_STRUCTURE_TYPE_VALIDATION_FEATURES_EXT;
|
|
|
|
features.pNext = nullptr;
|
2020-03-08 05:58:23 +00:00
|
|
|
features.enabledValidationFeatureCount =
|
|
|
|
static_cast<uint32_t> (info.enabled_validation_features.size ());
|
2020-01-31 22:23:22 +00:00
|
|
|
features.pEnabledValidationFeatures = info.enabled_validation_features.data ();
|
2020-03-08 05:58:23 +00:00
|
|
|
features.disabledValidationFeatureCount =
|
|
|
|
static_cast<uint32_t> (info.disabled_validation_features.size ());
|
2020-01-31 22:23:22 +00:00
|
|
|
features.pDisabledValidationFeatures = info.disabled_validation_features.data ();
|
2020-03-08 05:21:27 +00:00
|
|
|
pNext_chain.push_back (reinterpret_cast<VkBaseOutStructure*> (&features));
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkValidationFlagsEXT checks{};
|
2020-02-06 22:46:14 +00:00
|
|
|
if (info.disabled_validation_checks.size () != 0) {
|
2020-01-31 22:23:22 +00:00
|
|
|
checks.sType = VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT;
|
|
|
|
checks.pNext = nullptr;
|
2020-03-08 05:58:23 +00:00
|
|
|
checks.disabledValidationCheckCount =
|
|
|
|
static_cast<uint32_t> (info.disabled_validation_checks.size ());
|
2020-01-31 22:23:22 +00:00
|
|
|
checks.pDisabledValidationChecks = info.disabled_validation_checks.data ();
|
2020-03-08 05:21:27 +00:00
|
|
|
pNext_chain.push_back (reinterpret_cast<VkBaseOutStructure*> (&checks));
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkInstanceCreateInfo instance_create_info = {};
|
|
|
|
instance_create_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
|
2020-03-08 05:21:27 +00:00
|
|
|
detail::setup_pNext_chain (instance_create_info, pNext_chain);
|
2020-01-31 22:23:22 +00:00
|
|
|
instance_create_info.flags = info.flags;
|
|
|
|
instance_create_info.pApplicationInfo = &app_info;
|
|
|
|
instance_create_info.enabledExtensionCount = static_cast<uint32_t> (extensions.size ());
|
|
|
|
instance_create_info.ppEnabledExtensionNames = extensions.data ();
|
|
|
|
instance_create_info.enabledLayerCount = static_cast<uint32_t> (layers.size ());
|
|
|
|
instance_create_info.ppEnabledLayerNames = layers.data ();
|
|
|
|
|
|
|
|
Instance instance;
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkCreateInstance (
|
2020-06-17 23:13:39 +00:00
|
|
|
&instance_create_info, info.allocation_callbacks, &instance.instance);
|
2020-02-10 18:29:09 +00:00
|
|
|
if (res != VK_SUCCESS)
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<Instance> (InstanceError::failed_create_instance, res);
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().init_instance_funcs (instance.instance);
|
2020-06-17 23:13:39 +00:00
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
if (info.use_debug_messenger) {
|
|
|
|
res = create_debug_utils_messenger (instance.instance,
|
2020-01-31 22:23:22 +00:00
|
|
|
info.debug_callback,
|
|
|
|
info.debug_message_severity,
|
|
|
|
info.debug_message_type,
|
2020-03-07 22:33:17 +00:00
|
|
|
&instance.debug_messenger,
|
|
|
|
info.allocation_callbacks);
|
2020-02-06 22:46:14 +00:00
|
|
|
if (res != VK_SUCCESS) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<Instance> (InstanceError::failed_create_debug_messenger, res);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
if (info.headless_context) {
|
2020-01-31 22:23:22 +00:00
|
|
|
instance.headless = true;
|
|
|
|
}
|
2020-03-07 22:33:17 +00:00
|
|
|
instance.allocation_callbacks = info.allocation_callbacks;
|
2020-03-09 21:10:11 +00:00
|
|
|
instance.instance_version = api_version;
|
2020-09-26 18:15:40 +00:00
|
|
|
instance.fp_vkGetInstanceProcAddr = detail::vulkan_functions ().ptr_vkGetInstanceProcAddr;
|
2020-01-31 22:23:22 +00:00
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2020-02-12 00:51:03 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_app_name (const char* app_name) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if (!app_name) return *this;
|
2020-01-31 22:23:22 +00:00
|
|
|
info.app_name = app_name;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-12 00:51:03 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_engine_name (const char* engine_name) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if (!engine_name) return *this;
|
2020-01-31 22:23:22 +00:00
|
|
|
info.engine_name = engine_name;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_app_version (uint32_t major, uint32_t minor, uint32_t patch) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.application_version = VK_MAKE_VERSION (major, minor, patch);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_engine_version (uint32_t major, uint32_t minor, uint32_t patch) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.engine_version = VK_MAKE_VERSION (major, minor, patch);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-08 07:59:58 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::require_api_version (uint32_t major, uint32_t minor, uint32_t patch) {
|
2020-03-09 21:10:11 +00:00
|
|
|
info.required_api_version = VK_MAKE_VERSION (major, minor, patch);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
InstanceBuilder& InstanceBuilder::desire_api_version (uint32_t major, uint32_t minor, uint32_t patch) {
|
|
|
|
info.desired_api_version = VK_MAKE_VERSION (major, minor, patch);
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 09:53:54 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::enable_layer (const char* layer_name) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if (!layer_name) return *this;
|
2020-01-31 22:23:22 +00:00
|
|
|
info.layers.push_back (layer_name);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 09:53:54 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::enable_extension (const char* extension_name) {
|
2020-03-07 08:44:34 +00:00
|
|
|
if (!extension_name) return *this;
|
|
|
|
info.extensions.push_back (extension_name);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 09:53:54 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::enable_validation_layers (bool enable_validation) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.enable_validation_layers = enable_validation;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 08:44:34 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::request_validation_layers (bool enable_validation) {
|
2020-06-17 23:13:39 +00:00
|
|
|
info.request_validation_layers = enable_validation;
|
2020-02-19 02:12:31 +00:00
|
|
|
return *this;
|
2020-02-18 22:18:08 +00:00
|
|
|
}
|
2020-03-07 08:44:34 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::use_default_debug_messenger () {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.use_debug_messenger = true;
|
2020-02-06 22:46:14 +00:00
|
|
|
info.debug_callback = default_debug_callback;
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_debug_callback (PFN_vkDebugUtilsMessengerCallbackEXT callback) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.use_debug_messenger = true;
|
|
|
|
info.debug_callback = callback;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_headless (bool headless) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.headless_context = headless;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_debug_messenger_severity (VkDebugUtilsMessageSeverityFlagsEXT severity) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.debug_message_severity = severity;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::add_debug_messenger_severity (VkDebugUtilsMessageSeverityFlagsEXT severity) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.debug_message_severity = info.debug_message_severity | severity;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_debug_messenger_type (VkDebugUtilsMessageTypeFlagsEXT type) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.debug_message_type = type;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::add_debug_messenger_type (VkDebugUtilsMessageTypeFlagsEXT type) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.debug_message_type = info.debug_message_type | type;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::add_validation_disable (VkValidationCheckEXT check) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.disabled_validation_checks.push_back (check);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::add_validation_feature_enable (VkValidationFeatureEnableEXT enable) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.enabled_validation_features.push_back (enable);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::add_validation_feature_disable (VkValidationFeatureDisableEXT disable) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.disabled_validation_features.push_back (disable);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 22:33:17 +00:00
|
|
|
InstanceBuilder& InstanceBuilder::set_allocation_callbacks (VkAllocationCallbacks* callbacks) {
|
|
|
|
info.allocation_callbacks = callbacks;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-02-17 20:13:09 +00:00
|
|
|
// ---- Physical Device ---- //
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
namespace detail {
|
|
|
|
|
2020-02-12 00:51:03 +00:00
|
|
|
std::vector<const char*> check_device_extension_support (
|
|
|
|
VkPhysicalDevice device, std::vector<const char*> desired_extensions) {
|
2020-05-17 13:31:02 +00:00
|
|
|
std::vector<VkExtensionProperties> available_extensions;
|
|
|
|
auto available_extensions_ret = detail::get_vector<VkExtensionProperties> (
|
2020-09-26 18:15:40 +00:00
|
|
|
available_extensions, detail::vulkan_functions ().fp_vkEnumerateDeviceExtensionProperties, device, nullptr);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (available_extensions_ret != VK_SUCCESS) return {};
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-12 00:51:03 +00:00
|
|
|
std::vector<const char*> extensions_to_enable;
|
2020-05-17 13:31:02 +00:00
|
|
|
for (const auto& extension : available_extensions) {
|
2020-02-06 22:46:14 +00:00
|
|
|
for (auto& req_ext : desired_extensions) {
|
2020-03-12 03:19:31 +00:00
|
|
|
if (strcmp (req_ext, extension.extensionName) == 0) {
|
|
|
|
extensions_to_enable.push_back (req_ext);
|
|
|
|
break;
|
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-03 23:23:47 +00:00
|
|
|
return extensions_to_enable;
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
bool supports_features (VkPhysicalDeviceFeatures supported, VkPhysicalDeviceFeatures requested) {
|
2020-01-30 08:15:10 +00:00
|
|
|
// clang-format off
|
2020-02-04 03:34:46 +00:00
|
|
|
if (requested.robustBufferAccess && !supported.robustBufferAccess) return false;
|
|
|
|
if (requested.fullDrawIndexUint32 && !supported.fullDrawIndexUint32) return false;
|
|
|
|
if (requested.imageCubeArray && !supported.imageCubeArray) return false;
|
|
|
|
if (requested.independentBlend && !supported.independentBlend) return false;
|
|
|
|
if (requested.geometryShader && !supported.geometryShader) return false;
|
|
|
|
if (requested.tessellationShader && !supported.tessellationShader) return false;
|
|
|
|
if (requested.sampleRateShading && !supported.sampleRateShading) return false;
|
|
|
|
if (requested.dualSrcBlend && !supported.dualSrcBlend) return false;
|
|
|
|
if (requested.logicOp && !supported.logicOp) return false;
|
|
|
|
if (requested.multiDrawIndirect && !supported.multiDrawIndirect) return false;
|
|
|
|
if (requested.drawIndirectFirstInstance && !supported.drawIndirectFirstInstance) return false;
|
|
|
|
if (requested.depthClamp && !supported.depthClamp) return false;
|
|
|
|
if (requested.depthBiasClamp && !supported.depthBiasClamp) return false;
|
|
|
|
if (requested.fillModeNonSolid && !supported.fillModeNonSolid) return false;
|
|
|
|
if (requested.depthBounds && !supported.depthBounds) return false;
|
|
|
|
if (requested.wideLines && !supported.wideLines) return false;
|
|
|
|
if (requested.largePoints && !supported.largePoints) return false;
|
|
|
|
if (requested.alphaToOne && !supported.alphaToOne) return false;
|
|
|
|
if (requested.multiViewport && !supported.multiViewport) return false;
|
|
|
|
if (requested.samplerAnisotropy && !supported.samplerAnisotropy) return false;
|
|
|
|
if (requested.textureCompressionETC2 && !supported.textureCompressionETC2) return false;
|
|
|
|
if (requested.textureCompressionASTC_LDR && !supported.textureCompressionASTC_LDR) return false;
|
|
|
|
if (requested.textureCompressionBC && !supported.textureCompressionBC) return false;
|
|
|
|
if (requested.occlusionQueryPrecise && !supported.occlusionQueryPrecise) return false;
|
|
|
|
if (requested.pipelineStatisticsQuery && !supported.pipelineStatisticsQuery) return false;
|
2020-01-30 08:15:10 +00:00
|
|
|
if (requested.vertexPipelineStoresAndAtomics && !supported.vertexPipelineStoresAndAtomics) return false;
|
|
|
|
if (requested.fragmentStoresAndAtomics && !supported.fragmentStoresAndAtomics) return false;
|
|
|
|
if (requested.shaderTessellationAndGeometryPointSize && !supported.shaderTessellationAndGeometryPointSize) return false;
|
|
|
|
if (requested.shaderImageGatherExtended && !supported.shaderImageGatherExtended) return false;
|
|
|
|
if (requested.shaderStorageImageExtendedFormats && !supported.shaderStorageImageExtendedFormats) return false;
|
|
|
|
if (requested.shaderStorageImageMultisample && !supported.shaderStorageImageMultisample) return false;
|
|
|
|
if (requested.shaderStorageImageReadWithoutFormat && !supported.shaderStorageImageReadWithoutFormat) return false;
|
|
|
|
if (requested.shaderStorageImageWriteWithoutFormat && !supported.shaderStorageImageWriteWithoutFormat) return false;
|
|
|
|
if (requested.shaderUniformBufferArrayDynamicIndexing && !supported.shaderUniformBufferArrayDynamicIndexing) return false;
|
|
|
|
if (requested.shaderSampledImageArrayDynamicIndexing && !supported.shaderSampledImageArrayDynamicIndexing) return false;
|
|
|
|
if (requested.shaderStorageBufferArrayDynamicIndexing && !supported.shaderStorageBufferArrayDynamicIndexing) return false;
|
|
|
|
if (requested.shaderStorageImageArrayDynamicIndexing && !supported.shaderStorageImageArrayDynamicIndexing) return false;
|
|
|
|
if (requested.shaderClipDistance && !supported.shaderClipDistance) return false;
|
|
|
|
if (requested.shaderCullDistance && !supported.shaderCullDistance) return false;
|
|
|
|
if (requested.shaderFloat64 && !supported.shaderFloat64) return false;
|
|
|
|
if (requested.shaderInt64 && !supported.shaderInt64) return false;
|
|
|
|
if (requested.shaderInt16 && !supported.shaderInt16) return false;
|
|
|
|
if (requested.shaderResourceResidency && !supported.shaderResourceResidency) return false;
|
|
|
|
if (requested.shaderResourceMinLod && !supported.shaderResourceMinLod) return false;
|
|
|
|
if (requested.sparseBinding && !supported.sparseBinding) return false;
|
|
|
|
if (requested.sparseResidencyBuffer && !supported.sparseResidencyBuffer) return false;
|
|
|
|
if (requested.sparseResidencyImage2D && !supported.sparseResidencyImage2D) return false;
|
|
|
|
if (requested.sparseResidencyImage3D && !supported.sparseResidencyImage3D) return false;
|
|
|
|
if (requested.sparseResidency2Samples && !supported.sparseResidency2Samples) return false;
|
|
|
|
if (requested.sparseResidency4Samples && !supported.sparseResidency4Samples) return false;
|
|
|
|
if (requested.sparseResidency8Samples && !supported.sparseResidency8Samples) return false;
|
|
|
|
if (requested.sparseResidency16Samples && !supported.sparseResidency16Samples) return false;
|
|
|
|
if (requested.sparseResidencyAliased && !supported.sparseResidencyAliased) return false;
|
|
|
|
if (requested.variableMultisampleRate && !supported.variableMultisampleRate) return false;
|
|
|
|
if (requested.inheritedQueries && !supported.inheritedQueries) return false;
|
|
|
|
// clang-format on
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-18 22:18:08 +00:00
|
|
|
// finds the first queue which supports graphics operations. returns -1 if none is found
|
2020-02-08 00:34:05 +00:00
|
|
|
int get_graphics_queue_index (std::vector<VkQueueFamilyProperties> const& families) {
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
|
|
|
if (families[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) return static_cast<int> (i);
|
2020-02-08 00:34:05 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2020-03-07 23:02:18 +00:00
|
|
|
// finds a compute queue which is separate from the graphics queue and tries to find one without
|
2020-02-19 02:12:31 +00:00
|
|
|
// transfer support returns -1 if none is found
|
2020-03-07 23:02:18 +00:00
|
|
|
int get_separate_compute_queue_index (std::vector<VkQueueFamilyProperties> const& families) {
|
2020-02-17 20:13:09 +00:00
|
|
|
int compute = -1;
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
2020-02-08 00:34:05 +00:00
|
|
|
if ((families[i].queueFlags & VK_QUEUE_COMPUTE_BIT) &&
|
2020-02-17 20:13:09 +00:00
|
|
|
((families[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0)) {
|
|
|
|
if ((families[i].queueFlags & VK_QUEUE_TRANSFER_BIT) == 0) {
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<int> (i);
|
2020-02-17 20:13:09 +00:00
|
|
|
} else {
|
2020-03-08 05:58:23 +00:00
|
|
|
compute = static_cast<int> (i);
|
2020-02-17 20:13:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-08 00:34:05 +00:00
|
|
|
}
|
2020-02-17 20:13:09 +00:00
|
|
|
return compute;
|
2020-02-08 00:34:05 +00:00
|
|
|
}
|
2020-03-07 23:02:18 +00:00
|
|
|
// finds a transfer queue which is separate from the graphics queue and tries to find one without
|
2020-02-19 02:12:31 +00:00
|
|
|
// compute support returns -1 if none is found
|
2020-03-07 23:02:18 +00:00
|
|
|
int get_separate_transfer_queue_index (std::vector<VkQueueFamilyProperties> const& families) {
|
2020-02-17 20:13:09 +00:00
|
|
|
int transfer = -1;
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
2020-02-08 00:34:05 +00:00
|
|
|
if ((families[i].queueFlags & VK_QUEUE_TRANSFER_BIT) &&
|
2020-02-17 20:13:09 +00:00
|
|
|
((families[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0)) {
|
|
|
|
if ((families[i].queueFlags & VK_QUEUE_COMPUTE_BIT) == 0) {
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<int> (i);
|
2020-02-17 20:13:09 +00:00
|
|
|
} else {
|
2020-03-08 05:58:23 +00:00
|
|
|
transfer = static_cast<int> (i);
|
2020-02-17 20:13:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-08 00:34:05 +00:00
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
return transfer;
|
|
|
|
}
|
|
|
|
// finds the first queue which supports only compute (not graphics or transfer). returns -1 if none is found
|
|
|
|
int get_dedicated_compute_queue_index (std::vector<VkQueueFamilyProperties> const& families) {
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if ((families[i].queueFlags & VK_QUEUE_COMPUTE_BIT) &&
|
|
|
|
(families[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0 &&
|
|
|
|
(families[i].queueFlags & VK_QUEUE_TRANSFER_BIT) == 0)
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<int> (i);
|
2020-02-18 22:18:08 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
// finds the first queue which supports only transfer (not graphics or compute). returns -1 if none is found
|
|
|
|
int get_dedicated_transfer_queue_index (std::vector<VkQueueFamilyProperties> const& families) {
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
2020-02-18 22:18:08 +00:00
|
|
|
if ((families[i].queueFlags & VK_QUEUE_TRANSFER_BIT) &&
|
|
|
|
(families[i].queueFlags & VK_QUEUE_GRAPHICS_BIT) == 0 &&
|
|
|
|
(families[i].queueFlags & VK_QUEUE_COMPUTE_BIT) == 0)
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<int> (i);
|
2020-02-18 22:18:08 +00:00
|
|
|
}
|
2020-02-08 00:34:05 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2020-02-18 22:18:08 +00:00
|
|
|
// finds the first queue which supports presenting. returns -1 if none is found
|
2020-02-08 00:34:05 +00:00
|
|
|
int get_present_queue_index (VkPhysicalDevice const phys_device,
|
|
|
|
VkSurfaceKHR const surface,
|
|
|
|
std::vector<VkQueueFamilyProperties> const& families) {
|
2020-03-08 05:58:23 +00:00
|
|
|
for (size_t i = 0; i < families.size (); i++) {
|
2020-02-06 22:46:14 +00:00
|
|
|
VkBool32 presentSupport = false;
|
|
|
|
if (surface != VK_NULL_HANDLE) {
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfaceSupportKHR (
|
2020-03-08 05:58:23 +00:00
|
|
|
phys_device, static_cast<uint32_t> (i), surface, &presentSupport);
|
|
|
|
if (res != VK_SUCCESS) return -1; // TODO: determine if this should fail another way
|
2020-02-06 22:46:14 +00:00
|
|
|
}
|
2020-03-12 03:26:41 +00:00
|
|
|
if (presentSupport == VK_TRUE) return static_cast<int> (i);
|
2020-02-06 22:46:14 +00:00
|
|
|
}
|
2020-02-08 00:34:05 +00:00
|
|
|
return -1;
|
2020-02-06 22:46:14 +00:00
|
|
|
}
|
2020-02-19 02:45:22 +00:00
|
|
|
} // namespace detail
|
2020-02-06 22:46:14 +00:00
|
|
|
|
2020-03-07 09:41:52 +00:00
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
PhysicalDeviceSelector::PhysicalDeviceDesc PhysicalDeviceSelector::populate_device_details (
|
2020-03-08 05:21:27 +00:00
|
|
|
VkPhysicalDevice phys_device) const {
|
2020-02-11 01:01:58 +00:00
|
|
|
PhysicalDeviceSelector::PhysicalDeviceDesc desc{};
|
|
|
|
desc.phys_device = phys_device;
|
2020-02-08 00:34:05 +00:00
|
|
|
auto queue_families = detail::get_vector_noerror<VkQueueFamilyProperties> (
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceQueueFamilyProperties, phys_device);
|
2020-02-11 01:01:58 +00:00
|
|
|
desc.queue_families = queue_families;
|
|
|
|
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceProperties (phys_device, &desc.device_properties);
|
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceFeatures (phys_device, &desc.device_features);
|
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceMemoryProperties (phys_device, &desc.mem_properties);
|
2020-02-11 01:01:58 +00:00
|
|
|
return desc;
|
|
|
|
}
|
|
|
|
|
2020-03-08 05:21:27 +00:00
|
|
|
PhysicalDeviceSelector::Suitable PhysicalDeviceSelector::is_device_suitable (PhysicalDeviceDesc pd) const {
|
2020-02-11 01:01:58 +00:00
|
|
|
Suitable suitable = Suitable::yes;
|
|
|
|
|
2020-03-12 03:19:31 +00:00
|
|
|
if (criteria.required_version > pd.device_properties.apiVersion) return Suitable::no;
|
2020-03-09 21:10:11 +00:00
|
|
|
if (criteria.desired_version > pd.device_properties.apiVersion) suitable = Suitable::partial;
|
|
|
|
|
2020-02-19 02:45:22 +00:00
|
|
|
bool dedicated_compute = detail::get_dedicated_compute_queue_index (pd.queue_families) >= 0;
|
|
|
|
bool dedicated_transfer = detail::get_dedicated_transfer_queue_index (pd.queue_families) >= 0;
|
2020-03-07 23:02:18 +00:00
|
|
|
bool separate_compute = detail::get_separate_compute_queue_index (pd.queue_families) >= 0;
|
|
|
|
bool separate_transfer = detail::get_separate_transfer_queue_index (pd.queue_families) >= 0;
|
2020-02-19 02:45:22 +00:00
|
|
|
|
|
|
|
bool present_queue =
|
2020-03-09 21:10:11 +00:00
|
|
|
detail::get_present_queue_index (pd.phys_device, system_info.surface, pd.queue_families) >= 0;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-09 21:10:11 +00:00
|
|
|
if (criteria.require_dedicated_compute_queue && !dedicated_compute) return Suitable::no;
|
|
|
|
if (criteria.require_dedicated_transfer_queue && !dedicated_transfer) return Suitable::no;
|
|
|
|
if (criteria.require_separate_compute_queue && !separate_compute) return Suitable::no;
|
|
|
|
if (criteria.require_separate_transfer_queue && !separate_transfer) return Suitable::no;
|
2020-04-19 06:52:31 +00:00
|
|
|
if (criteria.require_present && !present_queue && !criteria.defer_surface_initialization)
|
|
|
|
return Suitable::no;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-03 23:23:47 +00:00
|
|
|
auto required_extensions_supported =
|
2020-02-11 01:01:58 +00:00
|
|
|
detail::check_device_extension_support (pd.phys_device, criteria.required_extensions);
|
2020-02-03 23:23:47 +00:00
|
|
|
if (required_extensions_supported.size () != criteria.required_extensions.size ())
|
2020-03-09 21:10:11 +00:00
|
|
|
return Suitable::no;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-03 23:23:47 +00:00
|
|
|
auto desired_extensions_supported =
|
2020-02-11 01:01:58 +00:00
|
|
|
detail::check_device_extension_support (pd.phys_device, criteria.desired_extensions);
|
2020-02-03 23:23:47 +00:00
|
|
|
if (desired_extensions_supported.size () != criteria.desired_extensions.size ())
|
|
|
|
suitable = Suitable::partial;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
bool swapChainAdequate = false;
|
2020-03-08 06:26:46 +00:00
|
|
|
if (criteria.defer_surface_initialization) {
|
|
|
|
swapChainAdequate = true;
|
|
|
|
} else if (!system_info.headless) {
|
2020-05-17 13:31:02 +00:00
|
|
|
std::vector<VkSurfaceFormatKHR> formats;
|
|
|
|
std::vector<VkPresentModeKHR> present_modes;
|
2020-03-08 06:26:46 +00:00
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
auto formats_ret = detail::get_vector<VkSurfaceFormatKHR> (formats,
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfaceFormatsKHR,
|
2020-06-17 23:13:39 +00:00
|
|
|
pd.phys_device,
|
|
|
|
system_info.surface);
|
|
|
|
auto present_modes_ret = detail::get_vector<VkPresentModeKHR> (present_modes,
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfacePresentModesKHR,
|
2020-06-17 23:13:39 +00:00
|
|
|
pd.phys_device,
|
|
|
|
system_info.surface);
|
2020-03-08 06:26:46 +00:00
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
if (formats_ret == VK_SUCCESS && present_modes_ret == VK_SUCCESS) {
|
|
|
|
swapChainAdequate = !formats.empty () && !present_modes.empty ();
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-09 21:10:11 +00:00
|
|
|
if (criteria.require_present && !swapChainAdequate) return Suitable::no;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-07 22:44:47 +00:00
|
|
|
if (pd.device_properties.deviceType != static_cast<VkPhysicalDeviceType> (criteria.preferred_type)) {
|
|
|
|
if (criteria.allow_any_type)
|
2020-01-30 08:15:10 +00:00
|
|
|
suitable = Suitable::partial;
|
|
|
|
else
|
2020-03-09 21:10:11 +00:00
|
|
|
return Suitable::no;
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
|
|
|
|
bool required_features_supported =
|
2020-02-11 01:01:58 +00:00
|
|
|
detail::supports_features (pd.device_features, criteria.required_features);
|
2020-03-09 21:10:11 +00:00
|
|
|
if (!required_features_supported) return Suitable::no;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
bool has_required_memory = false;
|
|
|
|
bool has_preferred_memory = false;
|
2020-03-08 05:58:23 +00:00
|
|
|
for (uint32_t i = 0; i < pd.mem_properties.memoryHeapCount; i++) {
|
2020-02-11 01:01:58 +00:00
|
|
|
if (pd.mem_properties.memoryHeaps[i].flags & VK_MEMORY_PROPERTY_DEVICE_LOCAL_BIT) {
|
|
|
|
if (pd.mem_properties.memoryHeaps[i].size > criteria.required_mem_size) {
|
|
|
|
has_required_memory = true;
|
|
|
|
}
|
|
|
|
if (pd.mem_properties.memoryHeaps[i].size > criteria.desired_mem_size) {
|
|
|
|
has_preferred_memory = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-03-09 21:10:11 +00:00
|
|
|
if (!has_required_memory) return Suitable::no;
|
2020-02-11 01:01:58 +00:00
|
|
|
if (!has_preferred_memory) suitable = Suitable::partial;
|
|
|
|
|
2020-01-30 08:15:10 +00:00
|
|
|
return suitable;
|
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector::PhysicalDeviceSelector (Instance const& instance) {
|
2020-02-11 01:01:58 +00:00
|
|
|
system_info.instance = instance.instance;
|
|
|
|
system_info.headless = instance.headless;
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.require_present = !instance.headless;
|
2020-03-08 07:59:58 +00:00
|
|
|
criteria.required_version = instance.instance_version;
|
2020-03-09 21:10:11 +00:00
|
|
|
criteria.desired_version = instance.instance_version;
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<PhysicalDevice> PhysicalDeviceSelector::select () const {
|
2020-03-10 03:53:10 +00:00
|
|
|
if (!system_info.headless && !criteria.defer_surface_initialization) {
|
|
|
|
if (system_info.surface == nullptr)
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<PhysicalDevice>{ PhysicalDeviceError::no_surface_provided };
|
2020-03-10 03:53:10 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
|
|
|
|
std::vector<VkPhysicalDevice> physical_devices;
|
|
|
|
|
|
|
|
auto physical_devices_ret = detail::get_vector<VkPhysicalDevice> (
|
2020-09-26 18:15:40 +00:00
|
|
|
physical_devices, detail::vulkan_functions ().fp_vkEnumeratePhysicalDevices, system_info.instance);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (physical_devices_ret != VK_SUCCESS) {
|
|
|
|
return detail::Result<PhysicalDevice>{ PhysicalDeviceError::failed_enumerate_physical_devices,
|
|
|
|
physical_devices_ret };
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
if (physical_devices.size () == 0) {
|
|
|
|
return detail::Result<PhysicalDevice>{ PhysicalDeviceError::no_physical_devices_found };
|
2020-02-06 23:56:50 +00:00
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
std::vector<PhysicalDeviceDesc> phys_device_descriptions;
|
2020-05-17 13:31:02 +00:00
|
|
|
for (auto& phys_device : physical_devices) {
|
2020-02-11 01:01:58 +00:00
|
|
|
phys_device_descriptions.push_back (populate_device_details (phys_device));
|
|
|
|
}
|
|
|
|
|
|
|
|
PhysicalDeviceDesc selected_device{};
|
|
|
|
|
2020-02-06 23:56:50 +00:00
|
|
|
if (criteria.use_first_gpu_unconditionally) {
|
2020-02-11 01:01:58 +00:00
|
|
|
selected_device = phys_device_descriptions.at (0);
|
2020-02-06 23:56:50 +00:00
|
|
|
} else {
|
2020-02-11 01:01:58 +00:00
|
|
|
for (const auto& device : phys_device_descriptions) {
|
2020-02-06 23:56:50 +00:00
|
|
|
auto suitable = is_device_suitable (device);
|
|
|
|
if (suitable == Suitable::yes) {
|
2020-02-11 01:01:58 +00:00
|
|
|
selected_device = device;
|
2020-02-06 23:56:50 +00:00
|
|
|
break;
|
|
|
|
} else if (suitable == Suitable::partial) {
|
2020-02-11 01:01:58 +00:00
|
|
|
selected_device = device;
|
2020-02-06 23:56:50 +00:00
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
if (selected_device.phys_device == VK_NULL_HANDLE) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<PhysicalDevice>{ PhysicalDeviceError::no_suitable_device };
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
2020-02-11 01:01:58 +00:00
|
|
|
PhysicalDevice out_device{};
|
2020-03-10 03:53:10 +00:00
|
|
|
out_device.physical_device = selected_device.phys_device;
|
2020-02-11 01:01:58 +00:00
|
|
|
out_device.surface = system_info.surface;
|
|
|
|
out_device.features = criteria.required_features;
|
2020-03-10 03:53:10 +00:00
|
|
|
out_device.properties = selected_device.device_properties;
|
|
|
|
out_device.memory_properties = selected_device.mem_properties;
|
2020-02-11 01:01:58 +00:00
|
|
|
out_device.queue_families = selected_device.queue_families;
|
2020-04-19 06:52:31 +00:00
|
|
|
out_device.defer_surface_initialization = criteria.defer_surface_initialization;
|
2020-02-03 23:23:47 +00:00
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
out_device.extensions_to_enable.insert (out_device.extensions_to_enable.end (),
|
2020-02-03 23:23:47 +00:00
|
|
|
criteria.required_extensions.begin (),
|
|
|
|
criteria.required_extensions.end ());
|
|
|
|
auto desired_extensions_supported =
|
2020-03-10 03:53:10 +00:00
|
|
|
detail::check_device_extension_support (out_device.physical_device, criteria.desired_extensions);
|
2020-02-11 01:01:58 +00:00
|
|
|
out_device.extensions_to_enable.insert (out_device.extensions_to_enable.end (),
|
2020-02-03 23:23:47 +00:00
|
|
|
desired_extensions_supported.begin (),
|
|
|
|
desired_extensions_supported.end ());
|
2020-02-11 01:01:58 +00:00
|
|
|
return out_device;
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_surface (VkSurfaceKHR surface) {
|
2020-02-11 01:01:58 +00:00
|
|
|
system_info.surface = surface;
|
|
|
|
system_info.headless = false;
|
2020-01-30 08:15:10 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 23:56:50 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::prefer_gpu_device_type (PreferredDeviceType type) {
|
|
|
|
criteria.preferred_type = type;
|
2020-01-30 08:15:10 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 22:44:47 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::allow_any_gpu_device_type (bool allow_any_type) {
|
|
|
|
criteria.allow_any_type = allow_any_type;
|
2020-01-30 08:15:10 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::require_present (bool require) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.require_present = require;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::require_dedicated_transfer_queue () {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.require_dedicated_transfer_queue = true;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::require_dedicated_compute_queue () {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.require_dedicated_compute_queue = true;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 23:02:18 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::require_separate_transfer_queue () {
|
|
|
|
criteria.require_separate_transfer_queue = true;
|
2020-02-19 02:45:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 23:02:18 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::require_separate_compute_queue () {
|
|
|
|
criteria.require_separate_compute_queue = true;
|
2020-02-19 02:45:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::required_device_memory_size (VkDeviceSize size) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.required_mem_size = size;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::desired_device_memory_size (VkDeviceSize size) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.desired_mem_size = size;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-12 00:51:03 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::add_required_extension (const char* extension) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.required_extensions.push_back (extension);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-12 00:51:03 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::add_required_extensions (std::vector<const char*> extensions) {
|
2020-02-06 23:56:50 +00:00
|
|
|
criteria.required_extensions.insert (
|
|
|
|
criteria.required_extensions.end (), extensions.begin (), extensions.end ());
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-12 00:51:03 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::add_desired_extension (const char* extension) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.desired_extensions.push_back (extension);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-12 00:51:03 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::add_desired_extensions (std::vector<const char*> extensions) {
|
2020-02-06 23:56:50 +00:00
|
|
|
criteria.desired_extensions.insert (
|
|
|
|
criteria.desired_extensions.end (), extensions.begin (), extensions.end ());
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_minimum_version (uint32_t major, uint32_t minor) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.required_version = VK_MAKE_VERSION (major, minor, 0);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_desired_version (uint32_t major, uint32_t minor) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.desired_version = VK_MAKE_VERSION (major, minor, 0);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features (VkPhysicalDeviceFeatures features) {
|
2020-01-30 08:15:10 +00:00
|
|
|
criteria.required_features = features;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-08 06:26:46 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::defer_surface_initialization () {
|
|
|
|
criteria.defer_surface_initialization = true;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 23:56:50 +00:00
|
|
|
PhysicalDeviceSelector& PhysicalDeviceSelector::select_first_device_unconditionally (bool unconditionally) {
|
|
|
|
criteria.use_first_gpu_unconditionally = unconditionally;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-08 05:21:27 +00:00
|
|
|
bool PhysicalDevice::has_dedicated_compute_queue () const {
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_dedicated_compute_queue_index (queue_families) >= 0;
|
|
|
|
}
|
2020-03-08 05:21:27 +00:00
|
|
|
bool PhysicalDevice::has_separate_compute_queue () const {
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_separate_compute_queue_index (queue_families) >= 0;
|
|
|
|
}
|
2020-03-08 05:21:27 +00:00
|
|
|
bool PhysicalDevice::has_dedicated_transfer_queue () const {
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_dedicated_transfer_queue_index (queue_families) >= 0;
|
|
|
|
}
|
2020-03-08 05:21:27 +00:00
|
|
|
bool PhysicalDevice::has_separate_transfer_queue () const {
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_separate_transfer_queue_index (queue_families) >= 0;
|
|
|
|
}
|
2020-04-19 03:24:59 +00:00
|
|
|
std::vector<VkQueueFamilyProperties> PhysicalDevice::get_queue_families () const {
|
|
|
|
return queue_families;
|
|
|
|
}
|
2020-03-08 00:02:01 +00:00
|
|
|
|
|
|
|
// ---- Queues ---- //
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<uint32_t> Device::get_queue_index (QueueType type) const {
|
2020-03-08 00:02:01 +00:00
|
|
|
int index = -1;
|
2020-03-08 00:19:58 +00:00
|
|
|
switch (type) {
|
|
|
|
case QueueType::present:
|
2020-03-10 03:53:10 +00:00
|
|
|
index = detail::get_present_queue_index (physical_device.physical_device, surface, queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::present_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
case QueueType::graphics:
|
|
|
|
index = detail::get_graphics_queue_index (queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::graphics_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
case QueueType::compute:
|
|
|
|
index = detail::get_separate_compute_queue_index (queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::compute_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
case QueueType::transfer:
|
|
|
|
index = detail::get_separate_transfer_queue_index (queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::transfer_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<uint32_t>{ QueueError::invalid_queue_family_index };
|
2020-03-08 00:02:01 +00:00
|
|
|
}
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<uint32_t> (index);
|
2020-03-08 05:21:27 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<uint32_t> Device::get_dedicated_queue_index (QueueType type) const {
|
2020-03-08 00:02:01 +00:00
|
|
|
int index = -1;
|
2020-03-08 00:19:58 +00:00
|
|
|
switch (type) {
|
|
|
|
case QueueType::compute:
|
|
|
|
index = detail::get_dedicated_compute_queue_index (queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::compute_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
case QueueType::transfer:
|
|
|
|
index = detail::get_dedicated_transfer_queue_index (queue_families);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (index < 0) return detail::Result<uint32_t>{ QueueError::transfer_unavailable };
|
2020-03-08 00:19:58 +00:00
|
|
|
break;
|
|
|
|
default:
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Result<uint32_t>{ QueueError::invalid_queue_family_index };
|
2020-03-08 00:02:01 +00:00
|
|
|
}
|
2020-03-08 05:58:23 +00:00
|
|
|
return static_cast<uint32_t> (index);
|
2020-03-08 00:02:01 +00:00
|
|
|
}
|
|
|
|
namespace detail {
|
2020-03-08 05:58:23 +00:00
|
|
|
VkQueue get_queue (VkDevice device, uint32_t family) {
|
2020-03-08 00:02:01 +00:00
|
|
|
VkQueue out_queue;
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkGetDeviceQueue (device, family, 0, &out_queue);
|
2020-03-08 00:02:01 +00:00
|
|
|
return out_queue;
|
|
|
|
}
|
|
|
|
} // namespace detail
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<VkQueue> Device::get_queue (QueueType type) const {
|
2020-03-08 00:02:01 +00:00
|
|
|
auto index = get_queue_index (type);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (!index.has_value ()) return { index.error () };
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_queue (device, index.value ());
|
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<VkQueue> Device::get_dedicated_queue (QueueType type) const {
|
2020-03-08 00:02:01 +00:00
|
|
|
auto index = get_dedicated_queue_index (type);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (!index.has_value ()) return { index.error () };
|
2020-03-08 00:02:01 +00:00
|
|
|
return detail::get_queue (device, index.value ());
|
|
|
|
}
|
|
|
|
|
2020-01-30 08:15:10 +00:00
|
|
|
// ---- Device ---- //
|
2020-03-08 00:02:01 +00:00
|
|
|
|
2020-04-19 03:24:59 +00:00
|
|
|
CustomQueueDescription::CustomQueueDescription (uint32_t index, uint32_t count, std::vector<float> priorities)
|
|
|
|
: index (index), count (count), priorities (priorities) {
|
|
|
|
assert (count == priorities.size ());
|
|
|
|
}
|
|
|
|
|
2020-03-07 22:33:17 +00:00
|
|
|
void destroy_device (Device device) {
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkDestroyDevice (device.device, device.allocation_callbacks);
|
2020-03-07 22:33:17 +00:00
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
DeviceBuilder::DeviceBuilder (PhysicalDevice phys_device) {
|
2020-02-03 23:23:47 +00:00
|
|
|
info.physical_device = phys_device;
|
2020-03-08 00:36:55 +00:00
|
|
|
info.surface = phys_device.surface;
|
2020-02-11 01:01:58 +00:00
|
|
|
info.queue_families = phys_device.queue_families;
|
2020-03-08 00:36:55 +00:00
|
|
|
info.features = phys_device.features;
|
|
|
|
info.extensions_to_enable = phys_device.extensions_to_enable;
|
2020-04-19 06:52:31 +00:00
|
|
|
info.defer_surface_initialization = phys_device.defer_surface_initialization;
|
2020-02-03 23:23:47 +00:00
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<Device> DeviceBuilder::build () const {
|
2020-02-08 00:34:05 +00:00
|
|
|
|
2020-02-11 01:01:58 +00:00
|
|
|
std::vector<CustomQueueDescription> queue_descriptions;
|
|
|
|
queue_descriptions.insert (
|
|
|
|
queue_descriptions.end (), info.queue_descriptions.begin (), info.queue_descriptions.end ());
|
|
|
|
|
|
|
|
if (queue_descriptions.size () == 0) {
|
2020-03-08 00:02:01 +00:00
|
|
|
for (uint32_t i = 0; i < info.queue_families.size (); i++) {
|
2020-06-17 23:13:39 +00:00
|
|
|
queue_descriptions.push_back (CustomQueueDescription{ i, 1, std::vector<float>{ 1.0f } });
|
2020-02-11 01:01:58 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
|
|
|
std::vector<VkDeviceQueueCreateInfo> queueCreateInfos;
|
2020-02-11 01:01:58 +00:00
|
|
|
for (auto& desc : queue_descriptions) {
|
2020-01-30 08:15:10 +00:00
|
|
|
VkDeviceQueueCreateInfo queue_create_info = {};
|
|
|
|
queue_create_info.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
|
2020-02-11 01:01:58 +00:00
|
|
|
queue_create_info.queueFamilyIndex = desc.index;
|
|
|
|
queue_create_info.queueCount = desc.count;
|
|
|
|
queue_create_info.pQueuePriorities = desc.priorities.data ();
|
2020-01-30 08:15:10 +00:00
|
|
|
queueCreateInfos.push_back (queue_create_info);
|
|
|
|
}
|
|
|
|
|
2020-03-08 00:36:55 +00:00
|
|
|
std::vector<const char*> extensions = info.extensions_to_enable;
|
2020-04-19 06:52:31 +00:00
|
|
|
if (info.surface != VK_NULL_HANDLE || info.defer_surface_initialization)
|
|
|
|
extensions.push_back ({ VK_KHR_SWAPCHAIN_EXTENSION_NAME });
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-04-19 03:24:59 +00:00
|
|
|
// VUID-VkDeviceCreateInfo-pNext-00373 - don't add pEnabledFeatures if the phys_dev_features_2 is present
|
|
|
|
bool has_phys_dev_features_2 = false;
|
|
|
|
for (auto& pNext_struct : info.pNext_chain) {
|
|
|
|
if (pNext_struct->sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2) {
|
|
|
|
has_phys_dev_features_2 = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-30 08:15:10 +00:00
|
|
|
VkDeviceCreateInfo device_create_info = {};
|
|
|
|
device_create_info.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
|
2020-01-31 22:23:22 +00:00
|
|
|
detail::setup_pNext_chain (device_create_info, info.pNext_chain);
|
2020-01-30 08:15:10 +00:00
|
|
|
device_create_info.flags = info.flags;
|
|
|
|
device_create_info.queueCreateInfoCount = static_cast<uint32_t> (queueCreateInfos.size ());
|
|
|
|
device_create_info.pQueueCreateInfos = queueCreateInfos.data ();
|
|
|
|
device_create_info.enabledExtensionCount = static_cast<uint32_t> (extensions.size ());
|
|
|
|
device_create_info.ppEnabledExtensionNames = extensions.data ();
|
2020-04-19 03:24:59 +00:00
|
|
|
if (!has_phys_dev_features_2) {
|
|
|
|
device_create_info.pEnabledFeatures = &info.features;
|
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
|
|
|
Device device;
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkCreateDevice (info.physical_device.physical_device,
|
2020-03-10 03:53:10 +00:00
|
|
|
&device_create_info,
|
|
|
|
info.allocation_callbacks,
|
|
|
|
&device.device);
|
2020-02-06 22:46:14 +00:00
|
|
|
if (res != VK_SUCCESS) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return { DeviceError::failed_create_device, res };
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
2020-02-03 23:23:47 +00:00
|
|
|
device.physical_device = info.physical_device;
|
2020-03-08 00:36:55 +00:00
|
|
|
device.surface = info.surface;
|
2020-02-11 01:01:58 +00:00
|
|
|
device.queue_families = info.queue_families;
|
2020-03-07 22:33:17 +00:00
|
|
|
device.allocation_callbacks = info.allocation_callbacks;
|
2020-01-30 08:15:10 +00:00
|
|
|
return device;
|
|
|
|
}
|
2020-02-11 01:01:58 +00:00
|
|
|
DeviceBuilder& DeviceBuilder::custom_queue_setup (std::vector<CustomQueueDescription> queue_descriptions) {
|
|
|
|
info.queue_descriptions = queue_descriptions;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 22:33:17 +00:00
|
|
|
DeviceBuilder& DeviceBuilder::set_allocation_callbacks (VkAllocationCallbacks* callbacks) {
|
|
|
|
info.allocation_callbacks = callbacks;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-11 01:01:58 +00:00
|
|
|
|
2020-04-19 03:24:59 +00:00
|
|
|
// ---- Swapchain ---- //
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
namespace detail {
|
2020-03-08 06:26:46 +00:00
|
|
|
struct SurfaceSupportDetails {
|
|
|
|
VkSurfaceCapabilitiesKHR capabilities;
|
|
|
|
std::vector<VkSurfaceFormatKHR> formats;
|
|
|
|
std::vector<VkPresentModeKHR> present_modes;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class SurfaceSupportError {
|
|
|
|
surface_handle_null,
|
|
|
|
failed_get_surface_capabilities,
|
|
|
|
failed_enumerate_surface_formats,
|
|
|
|
failed_enumerate_present_modes
|
|
|
|
};
|
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
struct SurfaceSupportErrorCategory : std::error_category {
|
|
|
|
const char* name () const noexcept override { return "vbk_surface_support"; }
|
|
|
|
std::string message (int err) const override {
|
|
|
|
switch (static_cast<SurfaceSupportError> (err)) {
|
|
|
|
case SurfaceSupportError::surface_handle_null:
|
|
|
|
return "surface_handle_null";
|
|
|
|
case SurfaceSupportError::failed_get_surface_capabilities:
|
|
|
|
return "failed_get_surface_capabilities";
|
|
|
|
case SurfaceSupportError::failed_enumerate_surface_formats:
|
|
|
|
return "failed_enumerate_surface_formats";
|
|
|
|
case SurfaceSupportError::failed_enumerate_present_modes:
|
|
|
|
return "failed_enumerate_present_modes";
|
|
|
|
default:
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const SurfaceSupportErrorCategory surface_support_error_category;
|
|
|
|
|
|
|
|
std::error_code make_error_code (SurfaceSupportError surface_support_error) {
|
|
|
|
return { static_cast<int> (surface_support_error), detail::surface_support_error_category };
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<SurfaceSupportDetails> query_surface_support_details (VkPhysicalDevice phys_device, VkSurfaceKHR surface) {
|
2020-03-08 06:26:46 +00:00
|
|
|
if (surface == VK_NULL_HANDLE)
|
2020-05-17 13:31:02 +00:00
|
|
|
return make_error_code (SurfaceSupportError::surface_handle_null);
|
2020-03-08 06:26:46 +00:00
|
|
|
|
|
|
|
VkSurfaceCapabilitiesKHR capabilities;
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfaceCapabilitiesKHR (
|
2020-06-17 23:13:39 +00:00
|
|
|
phys_device, surface, &capabilities);
|
2020-03-08 06:26:46 +00:00
|
|
|
if (res != VK_SUCCESS) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return { make_error_code (SurfaceSupportError::failed_get_surface_capabilities), res };
|
2020-03-08 06:26:46 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
|
|
|
|
std::vector<VkSurfaceFormatKHR> formats;
|
|
|
|
std::vector<VkPresentModeKHR> present_modes;
|
|
|
|
|
|
|
|
auto formats_ret = detail::get_vector<VkSurfaceFormatKHR> (
|
2020-09-26 18:15:40 +00:00
|
|
|
formats, detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfaceFormatsKHR, phys_device, surface);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (formats_ret != VK_SUCCESS)
|
|
|
|
return { make_error_code (SurfaceSupportError::failed_enumerate_surface_formats), formats_ret };
|
|
|
|
auto present_modes_ret = detail::get_vector<VkPresentModeKHR> (
|
2020-09-26 18:15:40 +00:00
|
|
|
present_modes, detail::vulkan_functions ().fp_vkGetPhysicalDeviceSurfacePresentModesKHR, phys_device, surface);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (present_modes_ret != VK_SUCCESS)
|
|
|
|
return { make_error_code (SurfaceSupportError::failed_enumerate_present_modes), present_modes_ret };
|
2020-06-08 20:28:32 +00:00
|
|
|
|
2020-05-17 13:31:02 +00:00
|
|
|
return SurfaceSupportDetails{ capabilities, formats, present_modes };
|
2020-03-08 06:26:46 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 23:23:47 +00:00
|
|
|
VkSurfaceFormatKHR find_surface_format (std::vector<VkSurfaceFormatKHR> const& available_formats,
|
2020-02-06 22:46:14 +00:00
|
|
|
std::vector<VkSurfaceFormatKHR> const& desired_formats) {
|
|
|
|
for (auto const& desired_format : desired_formats) {
|
|
|
|
for (auto const& available_format : available_formats) {
|
2020-02-03 23:23:47 +00:00
|
|
|
// finds the first format that is desired and available
|
|
|
|
if (desired_format.format == available_format.format &&
|
2020-02-06 22:46:14 +00:00
|
|
|
desired_format.colorSpace == available_format.colorSpace) {
|
2020-02-03 23:23:47 +00:00
|
|
|
return desired_format;
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 23:23:47 +00:00
|
|
|
// use the first available one if any desired formats aren't found
|
|
|
|
return available_formats[0];
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
|
2020-02-03 23:23:47 +00:00
|
|
|
VkPresentModeKHR find_present_mode (std::vector<VkPresentModeKHR> const& available_resent_modes,
|
2020-02-06 22:46:14 +00:00
|
|
|
std::vector<VkPresentModeKHR> const& desired_present_modes) {
|
|
|
|
for (auto const& desired_pm : desired_present_modes) {
|
|
|
|
for (auto const& available_pm : available_resent_modes) {
|
2020-02-03 23:23:47 +00:00
|
|
|
// finds the first present mode that is desired and available
|
|
|
|
if (desired_pm == available_pm) return desired_pm;
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-03 23:23:47 +00:00
|
|
|
// only present mode required, use as a fallback
|
2020-01-31 22:23:22 +00:00
|
|
|
return VK_PRESENT_MODE_FIFO_KHR;
|
|
|
|
}
|
|
|
|
|
2020-02-17 20:17:09 +00:00
|
|
|
template <typename T> T minimum (T a, T b) { return a < b ? a : b; }
|
|
|
|
template <typename T> T maximum (T a, T b) { return a > b ? a : b; }
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
VkExtent2D find_extent (
|
|
|
|
VkSurfaceCapabilitiesKHR const& capabilities, uint32_t desired_width, uint32_t desired_height) {
|
|
|
|
if (capabilities.currentExtent.width != UINT32_MAX) {
|
2020-01-31 22:23:22 +00:00
|
|
|
return capabilities.currentExtent;
|
2020-02-06 22:46:14 +00:00
|
|
|
} else {
|
2020-03-08 05:58:23 +00:00
|
|
|
VkExtent2D actualExtent = { desired_width, desired_height };
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-02-17 20:17:09 +00:00
|
|
|
actualExtent.width = maximum (capabilities.minImageExtent.width,
|
|
|
|
minimum (capabilities.maxImageExtent.width, actualExtent.width));
|
|
|
|
actualExtent.height = maximum (capabilities.minImageExtent.height,
|
|
|
|
minimum (capabilities.maxImageExtent.height, actualExtent.height));
|
2020-01-31 22:23:22 +00:00
|
|
|
|
|
|
|
return actualExtent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
|
2020-06-08 22:59:31 +00:00
|
|
|
void destroy_swapchain (Swapchain const& swapchain) {
|
2020-06-08 21:40:33 +00:00
|
|
|
if (swapchain.device != VK_NULL_HANDLE && swapchain.swapchain != VK_NULL_HANDLE) {
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkDestroySwapchainKHR (
|
2020-06-17 23:13:39 +00:00
|
|
|
swapchain.device, swapchain.swapchain, swapchain.allocation_callbacks);
|
2020-06-08 21:40:33 +00:00
|
|
|
}
|
2020-06-08 20:28:32 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder::SwapchainBuilder (Device const& device) {
|
2020-01-31 22:23:22 +00:00
|
|
|
info.device = device.device;
|
2020-03-10 03:53:10 +00:00
|
|
|
info.physical_device = device.physical_device.physical_device;
|
2020-01-31 22:23:22 +00:00
|
|
|
info.surface = device.surface;
|
2020-03-08 00:02:01 +00:00
|
|
|
auto present = device.get_queue_index (QueueType::present);
|
|
|
|
auto graphics = device.get_queue_index (QueueType::graphics);
|
|
|
|
// TODO: handle error of queue's not available
|
|
|
|
info.graphics_queue_index = present.value ();
|
|
|
|
info.present_queue_index = graphics.value ();
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-04-19 23:59:32 +00:00
|
|
|
SwapchainBuilder::SwapchainBuilder (Device const& device, VkSurfaceKHR const surface) {
|
|
|
|
info.device = device.device;
|
|
|
|
info.physical_device = device.physical_device.physical_device;
|
|
|
|
info.surface = surface;
|
|
|
|
Device temp_device = device;
|
|
|
|
temp_device.surface = surface;
|
|
|
|
auto present = temp_device.get_queue_index (QueueType::present);
|
|
|
|
auto graphics = temp_device.get_queue_index (QueueType::graphics);
|
|
|
|
// TODO: handle error of queue's not available
|
|
|
|
info.graphics_queue_index = present.value ();
|
|
|
|
info.present_queue_index = graphics.value ();
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-06-08 20:28:32 +00:00
|
|
|
detail::Result<Swapchain> SwapchainBuilder::build () const {
|
2020-04-19 23:59:32 +00:00
|
|
|
if (info.surface == VK_NULL_HANDLE) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Error{ SwapchainError::surface_handle_not_provided };
|
2020-04-19 23:59:32 +00:00
|
|
|
}
|
|
|
|
|
2020-03-08 05:21:27 +00:00
|
|
|
auto desired_formats = info.desired_formats;
|
|
|
|
if (desired_formats.size () == 0) add_desired_formats (desired_formats);
|
|
|
|
auto desired_present_modes = info.desired_present_modes;
|
|
|
|
if (desired_present_modes.size () == 0) add_desired_present_modes (desired_present_modes);
|
2020-02-04 03:34:46 +00:00
|
|
|
|
2020-06-08 20:28:32 +00:00
|
|
|
auto surface_support_ret = detail::query_surface_support_details (info.physical_device, info.surface);
|
|
|
|
if (!surface_support_ret.has_value ())
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Error{ SwapchainError::failed_query_surface_support_details,
|
2020-06-08 20:28:32 +00:00
|
|
|
surface_support_ret.vk_result () };
|
|
|
|
auto surface_support = surface_support_ret.value ();
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-06-08 20:28:32 +00:00
|
|
|
uint32_t image_count = surface_support.capabilities.minImageCount + 1;
|
|
|
|
if (surface_support.capabilities.maxImageCount > 0 && image_count > surface_support.capabilities.maxImageCount) {
|
|
|
|
image_count = surface_support.capabilities.maxImageCount;
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-06-08 20:28:32 +00:00
|
|
|
VkSurfaceFormatKHR surface_format = detail::find_surface_format (surface_support.formats, desired_formats);
|
|
|
|
|
|
|
|
VkExtent2D extent =
|
|
|
|
detail::find_extent (surface_support.capabilities, info.desired_width, info.desired_height);
|
|
|
|
|
|
|
|
uint32_t image_array_layers = info.array_layer_count;
|
|
|
|
if (surface_support.capabilities.maxImageArrayLayers < info.array_layer_count)
|
|
|
|
image_array_layers = surface_support.capabilities.maxImageArrayLayers;
|
|
|
|
if (info.array_layer_count == 0) image_array_layers = 1;
|
|
|
|
|
|
|
|
uint32_t queue_family_indices[] = { info.graphics_queue_index, info.present_queue_index };
|
|
|
|
|
|
|
|
|
|
|
|
VkPresentModeKHR present_mode =
|
|
|
|
detail::find_present_mode (surface_support.present_modes, desired_present_modes);
|
|
|
|
|
|
|
|
VkSurfaceTransformFlagBitsKHR pre_transform = info.pre_transform;
|
|
|
|
if (info.pre_transform == static_cast<VkSurfaceTransformFlagBitsKHR> (0))
|
|
|
|
pre_transform = surface_support.capabilities.currentTransform;
|
2020-01-31 22:23:22 +00:00
|
|
|
|
|
|
|
VkSwapchainCreateInfoKHR swapchain_create_info = {};
|
|
|
|
swapchain_create_info.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR;
|
2020-06-08 20:28:32 +00:00
|
|
|
detail::setup_pNext_chain (swapchain_create_info, info.pNext_chain);
|
|
|
|
swapchain_create_info.flags = info.create_flags;
|
2020-01-31 22:23:22 +00:00
|
|
|
swapchain_create_info.surface = info.surface;
|
2020-06-08 20:28:32 +00:00
|
|
|
swapchain_create_info.minImageCount = image_count;
|
2020-02-03 23:23:47 +00:00
|
|
|
swapchain_create_info.imageFormat = surface_format.format;
|
|
|
|
swapchain_create_info.imageColorSpace = surface_format.colorSpace;
|
2020-01-31 22:23:22 +00:00
|
|
|
swapchain_create_info.imageExtent = extent;
|
2020-06-08 20:28:32 +00:00
|
|
|
swapchain_create_info.imageArrayLayers = image_array_layers;
|
2020-05-26 19:33:40 +00:00
|
|
|
swapchain_create_info.imageUsage = info.image_usage_flags;
|
2020-01-31 22:23:22 +00:00
|
|
|
|
2020-02-10 18:29:09 +00:00
|
|
|
if (info.graphics_queue_index != info.present_queue_index) {
|
2020-01-31 22:23:22 +00:00
|
|
|
swapchain_create_info.imageSharingMode = VK_SHARING_MODE_CONCURRENT;
|
|
|
|
swapchain_create_info.queueFamilyIndexCount = 2;
|
2020-02-06 22:46:14 +00:00
|
|
|
swapchain_create_info.pQueueFamilyIndices = queue_family_indices;
|
|
|
|
} else {
|
2020-01-31 22:23:22 +00:00
|
|
|
swapchain_create_info.imageSharingMode = VK_SHARING_MODE_EXCLUSIVE;
|
|
|
|
}
|
|
|
|
|
2020-06-08 20:28:32 +00:00
|
|
|
swapchain_create_info.preTransform = pre_transform;
|
|
|
|
swapchain_create_info.compositeAlpha = info.composite_alpha;
|
2020-02-03 23:23:47 +00:00
|
|
|
swapchain_create_info.presentMode = present_mode;
|
2020-05-26 19:33:40 +00:00
|
|
|
swapchain_create_info.clipped = info.clipped;
|
2020-06-08 20:28:32 +00:00
|
|
|
swapchain_create_info.oldSwapchain = info.old_swapchain;
|
2020-02-06 22:46:14 +00:00
|
|
|
Swapchain swapchain{};
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkCreateSwapchainKHR (
|
2020-03-07 22:33:17 +00:00
|
|
|
info.device, &swapchain_create_info, info.allocation_callbacks, &swapchain.swapchain);
|
2020-02-06 22:46:14 +00:00
|
|
|
if (res != VK_SUCCESS) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Error{ SwapchainError::failed_create_swapchain, res };
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-02-04 03:34:46 +00:00
|
|
|
swapchain.device = info.device;
|
2020-02-03 23:23:47 +00:00
|
|
|
swapchain.image_format = surface_format.format;
|
2020-01-31 22:23:22 +00:00
|
|
|
swapchain.extent = extent;
|
2020-04-19 03:24:59 +00:00
|
|
|
auto images = swapchain.get_images ();
|
|
|
|
if (!images) {
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Error{ SwapchainError::failed_get_swapchain_images };
|
2020-04-19 03:24:59 +00:00
|
|
|
}
|
2020-03-08 05:58:23 +00:00
|
|
|
swapchain.image_count = static_cast<uint32_t> (images.value ().size ());
|
2020-03-07 22:33:17 +00:00
|
|
|
swapchain.allocation_callbacks = info.allocation_callbacks;
|
2020-01-31 22:23:22 +00:00
|
|
|
return swapchain;
|
2020-03-08 05:21:27 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<std::vector<VkImage>> Swapchain::get_images () {
|
|
|
|
std::vector<VkImage> swapchain_images;
|
|
|
|
|
2020-06-17 23:13:39 +00:00
|
|
|
auto swapchain_images_ret = detail::get_vector<VkImage> (
|
2020-09-26 18:15:40 +00:00
|
|
|
swapchain_images, detail::vulkan_functions ().fp_vkGetSwapchainImagesKHR, device, swapchain);
|
2020-05-17 13:31:02 +00:00
|
|
|
if (swapchain_images_ret != VK_SUCCESS) {
|
|
|
|
return detail::Error{ SwapchainError::failed_get_swapchain_images, swapchain_images_ret };
|
2020-02-04 03:34:46 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
return swapchain_images;
|
2020-02-04 03:34:46 +00:00
|
|
|
}
|
2020-05-17 13:31:02 +00:00
|
|
|
detail::Result<std::vector<VkImageView>> Swapchain::get_image_views () {
|
2020-04-19 03:24:59 +00:00
|
|
|
|
|
|
|
auto swapchain_images_ret = get_images ();
|
|
|
|
if (!swapchain_images_ret) return swapchain_images_ret.error ();
|
|
|
|
auto swapchain_images = swapchain_images_ret.value ();
|
2020-02-04 03:34:46 +00:00
|
|
|
|
2020-04-19 03:24:59 +00:00
|
|
|
std::vector<VkImageView> views{ swapchain_images.size () };
|
2020-02-04 03:34:46 +00:00
|
|
|
|
2020-04-19 03:24:59 +00:00
|
|
|
for (size_t i = 0; i < swapchain_images.size (); i++) {
|
2020-02-04 03:34:46 +00:00
|
|
|
VkImageViewCreateInfo createInfo = {};
|
|
|
|
createInfo.sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO;
|
2020-04-19 03:24:59 +00:00
|
|
|
createInfo.image = swapchain_images[i];
|
2020-02-04 03:34:46 +00:00
|
|
|
createInfo.viewType = VK_IMAGE_VIEW_TYPE_2D;
|
2020-04-19 03:24:59 +00:00
|
|
|
createInfo.format = image_format;
|
2020-02-04 03:34:46 +00:00
|
|
|
createInfo.components.r = VK_COMPONENT_SWIZZLE_IDENTITY;
|
|
|
|
createInfo.components.g = VK_COMPONENT_SWIZZLE_IDENTITY;
|
|
|
|
createInfo.components.b = VK_COMPONENT_SWIZZLE_IDENTITY;
|
|
|
|
createInfo.components.a = VK_COMPONENT_SWIZZLE_IDENTITY;
|
|
|
|
createInfo.subresourceRange.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT;
|
|
|
|
createInfo.subresourceRange.baseMipLevel = 0;
|
|
|
|
createInfo.subresourceRange.levelCount = 1;
|
|
|
|
createInfo.subresourceRange.baseArrayLayer = 0;
|
|
|
|
createInfo.subresourceRange.layerCount = 1;
|
|
|
|
|
2020-09-26 18:15:40 +00:00
|
|
|
VkResult res = detail::vulkan_functions ().fp_vkCreateImageView (
|
2020-06-17 23:13:39 +00:00
|
|
|
device, &createInfo, allocation_callbacks, &views[i]);
|
2020-02-06 22:46:14 +00:00
|
|
|
if (res != VK_SUCCESS)
|
2020-05-17 13:31:02 +00:00
|
|
|
return detail::Error{ SwapchainError::failed_create_swapchain_image_views, res };
|
2020-02-04 03:34:46 +00:00
|
|
|
}
|
|
|
|
return views;
|
|
|
|
}
|
2020-04-19 03:24:59 +00:00
|
|
|
void Swapchain::destroy_image_views (std::vector<VkImageView> const& image_views) {
|
|
|
|
for (auto& image_view : image_views) {
|
2020-09-26 18:15:40 +00:00
|
|
|
detail::vulkan_functions ().fp_vkDestroyImageView (device, image_view, allocation_callbacks);
|
2020-04-19 03:24:59 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-08 20:28:32 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_old_swapchain (VkSwapchainKHR old_swapchain) {
|
|
|
|
info.old_swapchain = old_swapchain;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::set_old_swapchain (Swapchain const& swapchain) {
|
|
|
|
info.old_swapchain = swapchain.swapchain;
|
|
|
|
return *this;
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-03-08 05:58:23 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_desired_extent (uint32_t width, uint32_t height) {
|
|
|
|
info.desired_width = width;
|
|
|
|
info.desired_height = height;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_desired_format (VkSurfaceFormatKHR format) {
|
2020-02-03 23:23:47 +00:00
|
|
|
info.desired_formats.insert (info.desired_formats.begin (), format);
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::add_fallback_format (VkSurfaceFormatKHR format) {
|
2020-02-03 23:23:47 +00:00
|
|
|
info.desired_formats.push_back (format);
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::use_default_format_selection () {
|
2020-06-08 20:28:32 +00:00
|
|
|
info.desired_formats.clear ();
|
2020-03-08 05:21:27 +00:00
|
|
|
add_desired_formats (info.desired_formats);
|
2020-02-03 23:23:47 +00:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_desired_present_mode (VkPresentModeKHR present_mode) {
|
2020-02-03 23:23:47 +00:00
|
|
|
info.desired_present_modes.insert (info.desired_present_modes.begin (), present_mode);
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::add_fallback_present_mode (VkPresentModeKHR present_mode) {
|
2020-02-03 23:23:47 +00:00
|
|
|
info.desired_present_modes.push_back (present_mode);
|
|
|
|
return *this;
|
|
|
|
}
|
2020-02-06 22:46:14 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::use_default_present_mode_selection () {
|
2020-06-08 20:28:32 +00:00
|
|
|
info.desired_present_modes.clear ();
|
2020-03-08 05:21:27 +00:00
|
|
|
add_desired_present_modes (info.desired_present_modes);
|
2020-01-31 22:23:22 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2020-03-07 22:33:17 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_allocation_callbacks (VkAllocationCallbacks* callbacks) {
|
|
|
|
info.allocation_callbacks = callbacks;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-05-26 19:33:40 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_image_usage_flags (VkImageUsageFlags usage_flags) {
|
|
|
|
info.image_usage_flags = usage_flags;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::add_image_usage_flags (VkImageUsageFlags usage_flags) {
|
|
|
|
info.image_usage_flags = info.image_usage_flags | usage_flags;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::use_default_image_usage_flags () {
|
|
|
|
info.image_usage_flags = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::set_image_array_layer_count (uint32_t array_layer_count) {
|
|
|
|
info.array_layer_count = array_layer_count;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::set_clipped (bool clipped) {
|
|
|
|
info.clipped = clipped;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-06-08 20:28:32 +00:00
|
|
|
SwapchainBuilder& SwapchainBuilder::set_create_flags (VkSwapchainCreateFlagBitsKHR create_flags) {
|
|
|
|
info.create_flags = create_flags;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::set_pre_transform_flags (VkSurfaceTransformFlagBitsKHR pre_transform_flags) {
|
|
|
|
info.pre_transform = pre_transform_flags;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
SwapchainBuilder& SwapchainBuilder::set_composite_alpha_flags (VkCompositeAlphaFlagBitsKHR composite_alpha_flags) {
|
|
|
|
info.composite_alpha = composite_alpha_flags;
|
|
|
|
return *this;
|
|
|
|
}
|
2020-05-26 19:33:40 +00:00
|
|
|
|
2020-03-08 05:21:27 +00:00
|
|
|
void SwapchainBuilder::add_desired_formats (std::vector<VkSurfaceFormatKHR>& formats) const {
|
2020-05-09 23:22:45 +00:00
|
|
|
formats.push_back ({ VK_FORMAT_B8G8R8A8_SRGB, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR });
|
|
|
|
formats.push_back ({ VK_FORMAT_R8G8B8A8_SRGB, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR });
|
2020-03-08 05:21:27 +00:00
|
|
|
}
|
|
|
|
void SwapchainBuilder::add_desired_present_modes (std::vector<VkPresentModeKHR>& modes) const {
|
|
|
|
modes.push_back (VK_PRESENT_MODE_MAILBOX_KHR);
|
|
|
|
modes.push_back (VK_PRESENT_MODE_FIFO_KHR);
|
|
|
|
}
|
2020-01-31 22:23:22 +00:00
|
|
|
} // namespace vkb
|