2016-08-13 12:57:50 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2021-12-10 02:22:16 +00:00
|
|
|
#include "VideoBackends/Vulkan/VulkanContext.h"
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
#include <algorithm>
|
2019-01-29 23:12:06 +00:00
|
|
|
#include <array>
|
2017-09-09 19:52:35 +00:00
|
|
|
#include <cstring>
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
#include "Common/Assert.h"
|
|
|
|
#include "Common/CommonFuncs.h"
|
|
|
|
#include "Common/Logging/Log.h"
|
|
|
|
#include "Common/MsgHandler.h"
|
|
|
|
#include "Common/StringUtil.h"
|
|
|
|
|
|
|
|
#include "VideoCommon/DriverDetails.h"
|
2019-07-17 00:18:48 +00:00
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
namespace Vulkan
|
|
|
|
{
|
2022-10-27 19:25:32 +00:00
|
|
|
static constexpr const char* VALIDATION_LAYER_NAME = "VK_LAYER_KHRONOS_validation";
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
std::unique_ptr<VulkanContext> g_vulkan_context;
|
|
|
|
|
|
|
|
VulkanContext::VulkanContext(VkInstance instance, VkPhysicalDevice physical_device)
|
|
|
|
: m_instance(instance), m_physical_device(physical_device)
|
|
|
|
{
|
|
|
|
// Read device physical memory properties, we need it for allocating buffers
|
|
|
|
vkGetPhysicalDeviceProperties(physical_device, &m_device_properties);
|
|
|
|
vkGetPhysicalDeviceMemoryProperties(physical_device, &m_device_memory_properties);
|
|
|
|
|
|
|
|
// Would any drivers be this silly? I hope not...
|
|
|
|
m_device_properties.limits.minUniformBufferOffsetAlignment = std::max(
|
|
|
|
m_device_properties.limits.minUniformBufferOffsetAlignment, static_cast<VkDeviceSize>(1));
|
|
|
|
m_device_properties.limits.minTexelBufferOffsetAlignment = std::max(
|
|
|
|
m_device_properties.limits.minTexelBufferOffsetAlignment, static_cast<VkDeviceSize>(1));
|
|
|
|
m_device_properties.limits.optimalBufferCopyOffsetAlignment = std::max(
|
|
|
|
m_device_properties.limits.optimalBufferCopyOffsetAlignment, static_cast<VkDeviceSize>(1));
|
|
|
|
m_device_properties.limits.optimalBufferCopyRowPitchAlignment = std::max(
|
|
|
|
m_device_properties.limits.optimalBufferCopyRowPitchAlignment, static_cast<VkDeviceSize>(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
VulkanContext::~VulkanContext()
|
|
|
|
{
|
2022-10-07 21:36:16 +00:00
|
|
|
if (m_allocator != VK_NULL_HANDLE)
|
|
|
|
vmaDestroyAllocator(m_allocator);
|
2016-08-13 12:57:50 +00:00
|
|
|
if (m_device != VK_NULL_HANDLE)
|
|
|
|
vkDestroyDevice(m_device, nullptr);
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
if (m_debug_utils_messenger != VK_NULL_HANDLE)
|
|
|
|
DisableDebugUtils();
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
vkDestroyInstance(m_instance, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VulkanContext::CheckValidationLayerAvailablility()
|
|
|
|
{
|
|
|
|
u32 extension_count = 0;
|
|
|
|
VkResult res = vkEnumerateInstanceExtensionProperties(nullptr, &extension_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumerateInstanceExtensionProperties failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<VkExtensionProperties> extension_list(extension_count);
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(nullptr, &extension_count, extension_list.data());
|
2018-03-15 00:34:35 +00:00
|
|
|
ASSERT(res == VK_SUCCESS);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
u32 layer_count = 0;
|
|
|
|
res = vkEnumerateInstanceLayerProperties(&layer_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumerateInstanceExtensionProperties failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<VkLayerProperties> layer_list(layer_count);
|
|
|
|
res = vkEnumerateInstanceLayerProperties(&layer_count, layer_list.data());
|
2018-03-15 00:34:35 +00:00
|
|
|
ASSERT(res == VK_SUCCESS);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
bool supports_validation_layers =
|
|
|
|
std::find_if(layer_list.begin(), layer_list.end(), [](const auto& it) {
|
|
|
|
return strcmp(it.layerName, VALIDATION_LAYER_NAME) == 0;
|
|
|
|
}) != layer_list.end();
|
|
|
|
|
|
|
|
bool supports_debug_utils =
|
|
|
|
std::find_if(extension_list.begin(), extension_list.end(), [](const auto& it) {
|
|
|
|
return strcmp(it.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0;
|
|
|
|
}) != extension_list.end();
|
|
|
|
|
|
|
|
if (!supports_debug_utils && supports_validation_layers)
|
|
|
|
{
|
|
|
|
// If the instance doesn't support debug utils but we're using validation layers,
|
|
|
|
// try to use the implementation of the extension provided by the validation layers.
|
|
|
|
extension_count = 0;
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(VALIDATION_LAYER_NAME, &extension_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumerateInstanceExtensionProperties failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
extension_list.resize(extension_count);
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(VALIDATION_LAYER_NAME, &extension_count,
|
|
|
|
extension_list.data());
|
|
|
|
ASSERT(res == VK_SUCCESS);
|
|
|
|
supports_debug_utils =
|
|
|
|
std::find_if(extension_list.begin(), extension_list.end(), [](const auto& it) {
|
|
|
|
return strcmp(it.extensionName, VK_EXT_DEBUG_UTILS_EXTENSION_NAME) == 0;
|
|
|
|
}) != extension_list.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check for both VK_EXT_debug_utils and VK_LAYER_KHRONOS_validation
|
|
|
|
return supports_debug_utils && supports_validation_layers;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
VkInstance VulkanContext::CreateVulkanInstance(WindowSystemType wstype, bool enable_debug_utils,
|
2022-10-07 21:36:16 +00:00
|
|
|
bool enable_validation_layer,
|
|
|
|
u32* out_vk_api_version)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2019-09-30 15:07:36 +00:00
|
|
|
std::vector<const char*> enabled_extensions;
|
2022-10-27 19:25:32 +00:00
|
|
|
if (!SelectInstanceExtensions(&enabled_extensions, wstype, enable_debug_utils,
|
|
|
|
enable_validation_layer))
|
2016-08-13 12:57:50 +00:00
|
|
|
return VK_NULL_HANDLE;
|
|
|
|
|
|
|
|
VkApplicationInfo app_info = {};
|
|
|
|
app_info.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
|
|
|
|
app_info.pNext = nullptr;
|
|
|
|
app_info.pApplicationName = "Dolphin Emulator";
|
|
|
|
app_info.applicationVersion = VK_MAKE_VERSION(5, 0, 0);
|
|
|
|
app_info.pEngineName = "Dolphin Emulator";
|
|
|
|
app_info.engineVersion = VK_MAKE_VERSION(5, 0, 0);
|
|
|
|
app_info.apiVersion = VK_MAKE_VERSION(1, 0, 0);
|
|
|
|
|
2019-03-29 14:18:26 +00:00
|
|
|
// Try for Vulkan 1.1 if the loader supports it.
|
|
|
|
if (vkEnumerateInstanceVersion)
|
|
|
|
{
|
|
|
|
u32 supported_api_version = 0;
|
|
|
|
VkResult res = vkEnumerateInstanceVersion(&supported_api_version);
|
|
|
|
if (res == VK_SUCCESS && (VK_VERSION_MAJOR(supported_api_version) > 1 ||
|
|
|
|
VK_VERSION_MINOR(supported_api_version) >= 1))
|
|
|
|
{
|
|
|
|
// The device itself may not support 1.1, so we check that before using any 1.1 functionality.
|
|
|
|
app_info.apiVersion = VK_MAKE_VERSION(1, 1, 0);
|
2023-05-31 22:05:06 +00:00
|
|
|
WARN_LOG_FMT(HOST_GPU, "Using Vulkan 1.1, supported: {}.{}",
|
|
|
|
VK_VERSION_MAJOR(supported_api_version),
|
|
|
|
VK_VERSION_MINOR(supported_api_version));
|
2019-03-29 14:18:26 +00:00
|
|
|
}
|
2023-05-31 22:05:06 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN_LOG_FMT(HOST_GPU, "Using Vulkan 1.0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WARN_LOG_FMT(HOST_GPU, "Using Vulkan 1.0");
|
2019-03-29 14:18:26 +00:00
|
|
|
}
|
|
|
|
|
2022-10-07 21:36:16 +00:00
|
|
|
*out_vk_api_version = app_info.apiVersion;
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
VkInstanceCreateInfo instance_create_info = {};
|
|
|
|
instance_create_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
|
|
|
|
instance_create_info.pNext = nullptr;
|
|
|
|
instance_create_info.flags = 0;
|
|
|
|
instance_create_info.pApplicationInfo = &app_info;
|
|
|
|
instance_create_info.enabledExtensionCount = static_cast<uint32_t>(enabled_extensions.size());
|
|
|
|
instance_create_info.ppEnabledExtensionNames = enabled_extensions.data();
|
|
|
|
instance_create_info.enabledLayerCount = 0;
|
|
|
|
instance_create_info.ppEnabledLayerNames = nullptr;
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
// Enable validation layer if the user enabled them in the settings
|
2016-08-13 12:57:50 +00:00
|
|
|
if (enable_validation_layer)
|
|
|
|
{
|
|
|
|
instance_create_info.enabledLayerCount = 1;
|
2022-10-27 19:25:32 +00:00
|
|
|
instance_create_info.ppEnabledLayerNames = &VALIDATION_LAYER_NAME;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkInstance instance;
|
|
|
|
VkResult res = vkCreateInstance(&instance_create_info, nullptr, &instance);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkCreateInstance failed: ");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
bool VulkanContext::SelectInstanceExtensions(std::vector<const char*>* extension_list,
|
2022-10-27 19:25:32 +00:00
|
|
|
WindowSystemType wstype, bool enable_debug_utils,
|
|
|
|
bool validation_layer_enabled)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
u32 extension_count = 0;
|
|
|
|
VkResult res = vkEnumerateInstanceExtensionProperties(nullptr, &extension_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumerateInstanceExtensionProperties failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extension_count == 0)
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: No extensions supported by instance.");
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<VkExtensionProperties> available_extension_list(extension_count);
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(nullptr, &extension_count,
|
|
|
|
available_extension_list.data());
|
2018-03-15 00:34:35 +00:00
|
|
|
ASSERT(res == VK_SUCCESS);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
u32 validation_layer_extension_count = 0;
|
|
|
|
std::vector<VkExtensionProperties> validation_layer_extension_list;
|
|
|
|
if (validation_layer_enabled)
|
|
|
|
{
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(VALIDATION_LAYER_NAME,
|
|
|
|
&validation_layer_extension_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res,
|
|
|
|
"vkEnumerateInstanceExtensionProperties failed for validation layers: ");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
validation_layer_extension_list.resize(validation_layer_extension_count);
|
|
|
|
res = vkEnumerateInstanceExtensionProperties(VALIDATION_LAYER_NAME,
|
|
|
|
&validation_layer_extension_count,
|
|
|
|
validation_layer_extension_list.data());
|
|
|
|
ASSERT(res == VK_SUCCESS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
for (const auto& extension_properties : available_extension_list)
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "Available extension: {}", extension_properties.extensionName);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
for (const auto& extension_properties : validation_layer_extension_list)
|
|
|
|
{
|
|
|
|
INFO_LOG_FMT(VIDEO, "Available extension in validation layer: {}",
|
|
|
|
extension_properties.extensionName);
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
auto AddExtension = [&](const char* name, bool required) {
|
2022-10-27 19:25:32 +00:00
|
|
|
bool extension_supported =
|
|
|
|
std::find_if(available_extension_list.begin(), available_extension_list.end(),
|
2016-08-13 12:57:50 +00:00
|
|
|
[&](const VkExtensionProperties& properties) {
|
|
|
|
return !strcmp(name, properties.extensionName);
|
2022-10-27 19:25:32 +00:00
|
|
|
}) != available_extension_list.end();
|
|
|
|
extension_supported =
|
|
|
|
extension_supported ||
|
|
|
|
std::find_if(validation_layer_extension_list.begin(), validation_layer_extension_list.end(),
|
|
|
|
[&](const VkExtensionProperties& properties) {
|
|
|
|
return !strcmp(name, properties.extensionName);
|
|
|
|
}) != validation_layer_extension_list.end();
|
|
|
|
|
|
|
|
if (extension_supported)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "Enabling extension: {}", name);
|
2016-08-13 12:57:50 +00:00
|
|
|
extension_list->push_back(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (required)
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: Missing required extension {}.", name);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2017-10-11 13:15:08 +00:00
|
|
|
return false;
|
2016-08-13 12:57:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Common extensions
|
2019-09-30 15:07:36 +00:00
|
|
|
if (wstype != WindowSystemType::Headless && !AddExtension(VK_KHR_SURFACE_EXTENSION_NAME, true))
|
2018-10-24 04:47:48 +00:00
|
|
|
{
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
2018-10-24 04:47:48 +00:00
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
#if defined(VK_USE_PLATFORM_WIN32_KHR)
|
2018-10-24 04:47:48 +00:00
|
|
|
if (wstype == WindowSystemType::Windows &&
|
2019-09-30 15:07:36 +00:00
|
|
|
!AddExtension(VK_KHR_WIN32_SURFACE_EXTENSION_NAME, true))
|
2018-10-24 04:47:48 +00:00
|
|
|
{
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
2018-10-24 04:47:48 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if defined(VK_USE_PLATFORM_XLIB_KHR)
|
2019-09-30 15:07:36 +00:00
|
|
|
if (wstype == WindowSystemType::X11 && !AddExtension(VK_KHR_XLIB_SURFACE_EXTENSION_NAME, true))
|
2018-10-24 04:47:48 +00:00
|
|
|
{
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
2018-10-24 04:47:48 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if defined(VK_USE_PLATFORM_ANDROID_KHR)
|
|
|
|
if (wstype == WindowSystemType::Android &&
|
2019-09-30 15:07:36 +00:00
|
|
|
!AddExtension(VK_KHR_ANDROID_SURFACE_EXTENSION_NAME, true))
|
2018-10-24 04:47:48 +00:00
|
|
|
{
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
2018-10-24 04:47:48 +00:00
|
|
|
}
|
|
|
|
#endif
|
2020-04-07 08:49:40 +00:00
|
|
|
#if defined(VK_USE_PLATFORM_METAL_EXT)
|
|
|
|
if (wstype == WindowSystemType::MacOS && !AddExtension(VK_EXT_METAL_SURFACE_EXTENSION_NAME, true))
|
2018-10-24 04:47:48 +00:00
|
|
|
{
|
2018-05-31 11:23:45 +00:00
|
|
|
return false;
|
2018-10-24 04:47:48 +00:00
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
#endif
|
|
|
|
|
2019-09-30 15:08:40 +00:00
|
|
|
AddExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, false);
|
2022-09-24 01:05:43 +00:00
|
|
|
if (wstype != WindowSystemType::Headless)
|
|
|
|
{
|
|
|
|
AddExtension(VK_KHR_GET_SURFACE_CAPABILITIES_2_EXTENSION_NAME, false);
|
|
|
|
}
|
2022-01-31 02:52:48 +00:00
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
// VK_EXT_debug_utils
|
2022-01-31 02:52:48 +00:00
|
|
|
if (AddExtension(VK_EXT_DEBUG_UTILS_EXTENSION_NAME, false))
|
|
|
|
{
|
|
|
|
g_Config.backend_info.bSupportsSettingObjectNames = true;
|
|
|
|
}
|
2022-10-27 19:25:32 +00:00
|
|
|
else if (enable_debug_utils)
|
|
|
|
{
|
|
|
|
WARN_LOG_FMT(VIDEO, "Vulkan: Debug utils requested, but extension is not available.");
|
|
|
|
}
|
2019-09-30 15:08:40 +00:00
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
VulkanContext::GPUList VulkanContext::EnumerateGPUs(VkInstance instance)
|
|
|
|
{
|
|
|
|
u32 gpu_count = 0;
|
|
|
|
VkResult res = vkEnumeratePhysicalDevices(instance, &gpu_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumeratePhysicalDevices failed: ");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
GPUList gpus;
|
|
|
|
gpus.resize(gpu_count);
|
|
|
|
|
|
|
|
res = vkEnumeratePhysicalDevices(instance, &gpu_count, gpus.data());
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumeratePhysicalDevices failed: ");
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
return gpus;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VulkanContext::PopulateBackendInfo(VideoConfig* config)
|
|
|
|
{
|
|
|
|
config->backend_info.api_type = APIType::Vulkan;
|
2019-09-30 15:10:08 +00:00
|
|
|
config->backend_info.bSupports3DVision = false; // D3D-exclusive.
|
|
|
|
config->backend_info.bSupportsEarlyZ = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsPrimitiveRestart = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsBindingLayout = false; // Assumed support.
|
|
|
|
config->backend_info.bSupportsPaletteConversion = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsClipControl = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsMultithreading = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsComputeShaders = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsGPUTextureDecoding = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsBitfield = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsPartialDepthCopies = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsShaderBinaries = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsPipelineCacheData = false; // Handled via pipeline caches.
|
2017-11-13 13:40:48 +00:00
|
|
|
config->backend_info.bSupportsDynamicSamplerIndexing = true; // Assumed support.
|
|
|
|
config->backend_info.bSupportsPostProcessing = true; // Assumed support.
|
2018-02-25 07:56:09 +00:00
|
|
|
config->backend_info.bSupportsBackgroundCompiling = true; // Assumed support.
|
2019-02-15 01:59:50 +00:00
|
|
|
config->backend_info.bSupportsCopyToVram = true; // Assumed support.
|
2019-07-15 09:45:36 +00:00
|
|
|
config->backend_info.bSupportsReversedDepthRange = true; // Assumed support.
|
2019-09-30 15:10:08 +00:00
|
|
|
config->backend_info.bSupportsExclusiveFullscreen = false; // Dependent on OS and features.
|
2017-11-13 13:40:48 +00:00
|
|
|
config->backend_info.bSupportsDualSourceBlend = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsGeometryShaders = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsGSInstancing = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsBBox = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsFragmentStoresAndAtomics = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsSSAA = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsDepthClamp = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsST3CTextures = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsBPTCTextures = false; // Dependent on features.
|
2019-02-15 01:59:50 +00:00
|
|
|
config->backend_info.bSupportsLogicOp = false; // Dependent on features.
|
|
|
|
config->backend_info.bSupportsLargePoints = false; // Dependent on features.
|
2021-08-03 02:31:22 +00:00
|
|
|
config->backend_info.bSupportsFramebufferFetch = false; // Dependent on OS and features.
|
2021-11-14 04:10:20 +00:00
|
|
|
config->backend_info.bSupportsCoarseDerivatives = true; // Assumed support.
|
2021-11-14 04:10:55 +00:00
|
|
|
config->backend_info.bSupportsTextureQueryLevels = true; // Assumed support.
|
2021-08-07 03:26:51 +00:00
|
|
|
config->backend_info.bSupportsLodBiasInSampler = false; // Dependent on OS.
|
2022-01-31 02:52:48 +00:00
|
|
|
config->backend_info.bSupportsSettingObjectNames = false; // Dependent on features.
|
2022-06-21 07:07:35 +00:00
|
|
|
config->backend_info.bSupportsPartialMultisampleResolve = true; // Assumed support.
|
2022-06-19 03:49:03 +00:00
|
|
|
config->backend_info.bSupportsDynamicVertexLoader = true; // Assumed support.
|
2022-07-24 08:32:59 +00:00
|
|
|
config->backend_info.bSupportsVSLinePointExpand = true; // Assumed support.
|
Video: implement color correction to match the NTSC and PAL color spaces (and gamma) that GC and Wii targeted.
To further increase the accuracy of the post process phase, I've added (scRGB) HDR support, which is necessary
to fully display the PAL and NTSC-J color spaces, and also to improve the quality of post process texture samplings and
do them in linear space instead of gamma space (which is very important when playing at low resolutions).
For SDR, the quality is also slightly increased, at least if any post process runs, as the buffer is now
R10G10B10A2 (on Vulkan, DX11 and DX12) if supported; previously it was R8G8B8A8 but the alpha bits were wasted.
Gamma correction is arguably the most important thing as Dolphin on Windows outputted in "sRGB" (implicitly)
as that's what Windows expects by default, though sRGB gamma is very different from the gamma commonly used
by video standards dating to the pre HDR era (roughly gamma 2.35).
Additionally, the addition of HDR support (which is pretty straight forward and minimal), added support for
our own custom AutoHDR shaders, which would allow us to achieve decent looking HDR in Dolphin games without
having to use SpecialK or Windows 11 AutoHDR. Both of which don't necessarily play nice with older games
with strongly different and simpler lighting. HDR should also be supported in Linux.
Development of my own AutoHDR shader is almost complete and will come next.
This has been carefully tested and there should be no regression in any of the different features that Dolphin
offers, like multisampling, stereo rendering, other post processes, etc etc.
Fixes: https://bugs.dolphin-emu.org/issues/8941
Co-authored-by: EndlesslyFlowering <EndlesslyFlowering@protonmail.com>
Co-authored-by: Dogway <lin_ares@hotmail.com>
2023-06-10 08:48:05 +00:00
|
|
|
config->backend_info.bSupportsHDROutput = true; // Assumed support.
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VulkanContext::PopulateBackendInfoAdapters(VideoConfig* config, const GPUList& gpu_list)
|
|
|
|
{
|
|
|
|
config->backend_info.Adapters.clear();
|
|
|
|
for (VkPhysicalDevice physical_device : gpu_list)
|
|
|
|
{
|
|
|
|
VkPhysicalDeviceProperties properties;
|
|
|
|
vkGetPhysicalDeviceProperties(physical_device, &properties);
|
|
|
|
config->backend_info.Adapters.push_back(properties.deviceName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VulkanContext::PopulateBackendInfoFeatures(VideoConfig* config, VkPhysicalDevice gpu,
|
2017-03-09 14:01:23 +00:00
|
|
|
const VkPhysicalDeviceProperties& properties,
|
2016-08-13 12:57:50 +00:00
|
|
|
const VkPhysicalDeviceFeatures& features)
|
|
|
|
{
|
2017-03-09 14:01:23 +00:00
|
|
|
config->backend_info.MaxTextureSize = properties.limits.maxImageDimension2D;
|
2019-02-15 01:59:50 +00:00
|
|
|
config->backend_info.bUsesLowerLeftOrigin = false;
|
2016-08-13 12:57:50 +00:00
|
|
|
config->backend_info.bSupportsDualSourceBlend = (features.dualSrcBlend == VK_TRUE);
|
|
|
|
config->backend_info.bSupportsGeometryShaders = (features.geometryShader == VK_TRUE);
|
|
|
|
config->backend_info.bSupportsGSInstancing = (features.geometryShader == VK_TRUE);
|
2017-03-05 23:17:54 +00:00
|
|
|
config->backend_info.bSupportsBBox = config->backend_info.bSupportsFragmentStoresAndAtomics =
|
|
|
|
(features.fragmentStoresAndAtomics == VK_TRUE);
|
2016-08-13 12:57:50 +00:00
|
|
|
config->backend_info.bSupportsSSAA = (features.sampleRateShading == VK_TRUE);
|
2018-05-25 14:04:18 +00:00
|
|
|
config->backend_info.bSupportsLogicOp = (features.logicOp == VK_TRUE);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2021-08-07 03:26:51 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
// Metal doesn't support this.
|
|
|
|
config->backend_info.bSupportsLodBiasInSampler = false;
|
|
|
|
#else
|
|
|
|
config->backend_info.bSupportsLodBiasInSampler = true;
|
|
|
|
#endif
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
// Disable geometry shader when shaderTessellationAndGeometryPointSize is not supported.
|
|
|
|
// Seems this is needed for gl_Layer.
|
|
|
|
if (!features.shaderTessellationAndGeometryPointSize)
|
2016-12-04 10:53:49 +00:00
|
|
|
{
|
2016-08-13 12:57:50 +00:00
|
|
|
config->backend_info.bSupportsGeometryShaders = VK_FALSE;
|
2016-12-04 10:53:49 +00:00
|
|
|
config->backend_info.bSupportsGSInstancing = VK_FALSE;
|
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
// Depth clamping implies shaderClipDistance and depthClamp
|
|
|
|
config->backend_info.bSupportsDepthClamp =
|
|
|
|
(features.depthClamp == VK_TRUE && features.shaderClipDistance == VK_TRUE);
|
2017-02-18 04:13:32 +00:00
|
|
|
|
2017-04-16 12:23:33 +00:00
|
|
|
// textureCompressionBC implies BC1 through BC7, which is a superset of DXT1/3/5, which we need.
|
2017-07-27 12:00:04 +00:00
|
|
|
const bool supports_bc = features.textureCompressionBC == VK_TRUE;
|
|
|
|
config->backend_info.bSupportsST3CTextures = supports_bc;
|
|
|
|
config->backend_info.bSupportsBPTCTextures = supports_bc;
|
2017-04-16 12:23:33 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
// Some devices don't support point sizes >1 (e.g. Adreno).
|
|
|
|
// If we can't use a point size above our maximum IR, use triangles instead for EFB pokes.
|
|
|
|
// This means a 6x increase in the size of the vertices, though.
|
|
|
|
config->backend_info.bSupportsLargePoints = features.largePoints &&
|
|
|
|
properties.limits.pointSizeRange[0] <= 1.0f &&
|
|
|
|
properties.limits.pointSizeRange[1] >= 16;
|
|
|
|
|
2021-08-03 02:31:22 +00:00
|
|
|
std::string device_name = properties.deviceName;
|
|
|
|
u32 vendor_id = properties.vendorID;
|
|
|
|
|
|
|
|
// Only Apple family GPUs support framebuffer fetch.
|
|
|
|
if (vendor_id == 0x106B || device_name.find("Apple") != std::string::npos)
|
|
|
|
{
|
|
|
|
config->backend_info.bSupportsFramebufferFetch = true;
|
|
|
|
}
|
|
|
|
|
2017-02-18 04:13:32 +00:00
|
|
|
// Our usage of primitive restart appears to be broken on AMD's binary drivers.
|
|
|
|
// Seems to be fine on GCN Gen 1-2, unconfirmed on GCN Gen 3, causes driver resets on GCN Gen 4.
|
|
|
|
if (DriverDetails::HasBug(DriverDetails::BUG_PRIMITIVE_RESTART))
|
|
|
|
config->backend_info.bSupportsPrimitiveRestart = false;
|
2019-07-15 09:45:36 +00:00
|
|
|
|
|
|
|
// Reversed depth range is broken on some drivers, or is broken when used in combination
|
|
|
|
// with depth clamping. Fall back to inverted depth range for these.
|
|
|
|
if (DriverDetails::HasBug(DriverDetails::BUG_BROKEN_REVERSED_DEPTH_RANGE))
|
|
|
|
config->backend_info.bSupportsReversedDepthRange = false;
|
2021-12-25 05:27:43 +00:00
|
|
|
|
2022-06-13 02:43:00 +00:00
|
|
|
// Dynamic sampler indexing locks up Intel GPUs on MoltenVK/Metal
|
|
|
|
if (DriverDetails::HasBug(DriverDetails::BUG_BROKEN_DYNAMIC_SAMPLER_INDEXING))
|
|
|
|
config->backend_info.bSupportsDynamicSamplerIndexing = false;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VulkanContext::PopulateBackendInfoMultisampleModes(
|
|
|
|
VideoConfig* config, VkPhysicalDevice gpu, const VkPhysicalDeviceProperties& properties)
|
|
|
|
{
|
|
|
|
// Query image support for the EFB texture formats.
|
|
|
|
VkImageFormatProperties efb_color_properties = {};
|
|
|
|
vkGetPhysicalDeviceImageFormatProperties(
|
2019-02-15 01:59:50 +00:00
|
|
|
gpu, VK_FORMAT_R8G8B8A8_UNORM, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL,
|
2016-08-13 12:57:50 +00:00
|
|
|
VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, 0, &efb_color_properties);
|
|
|
|
VkImageFormatProperties efb_depth_properties = {};
|
|
|
|
vkGetPhysicalDeviceImageFormatProperties(
|
2019-02-15 01:59:50 +00:00
|
|
|
gpu, VK_FORMAT_D32_SFLOAT, VK_IMAGE_TYPE_2D, VK_IMAGE_TILING_OPTIMAL,
|
2016-08-13 12:57:50 +00:00
|
|
|
VK_IMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT, 0, &efb_depth_properties);
|
|
|
|
|
|
|
|
// We can only support MSAA if it's supported on our render target formats.
|
|
|
|
VkSampleCountFlags supported_sample_counts = properties.limits.framebufferColorSampleCounts &
|
|
|
|
properties.limits.framebufferDepthSampleCounts &
|
|
|
|
efb_color_properties.sampleCounts &
|
2016-12-03 14:23:30 +00:00
|
|
|
efb_depth_properties.sampleCounts;
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
// No AA
|
|
|
|
config->backend_info.AAModes.clear();
|
|
|
|
config->backend_info.AAModes.emplace_back(1);
|
|
|
|
|
|
|
|
// 2xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_2_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(2);
|
|
|
|
|
|
|
|
// 4xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_4_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(4);
|
|
|
|
|
|
|
|
// 8xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_8_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(8);
|
|
|
|
|
|
|
|
// 16xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_16_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(16);
|
|
|
|
|
|
|
|
// 32xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_32_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(32);
|
|
|
|
|
|
|
|
// 64xMSAA/SSAA
|
|
|
|
if (supported_sample_counts & VK_SAMPLE_COUNT_64_BIT)
|
|
|
|
config->backend_info.AAModes.emplace_back(64);
|
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
std::unique_ptr<VulkanContext> VulkanContext::Create(VkInstance instance, VkPhysicalDevice gpu,
|
|
|
|
VkSurfaceKHR surface, bool enable_debug_utils,
|
|
|
|
bool enable_validation_layer,
|
|
|
|
u32 vk_api_version)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
std::unique_ptr<VulkanContext> context = std::make_unique<VulkanContext>(instance, gpu);
|
|
|
|
|
|
|
|
// Initialize DriverDetails so that we can check for bugs to disable features if needed.
|
2017-09-19 11:11:33 +00:00
|
|
|
context->InitDriverDetails();
|
2019-03-22 10:39:37 +00:00
|
|
|
context->PopulateShaderSubgroupSupport();
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
// Enable debug messages if the "Host GPU" log category is enabled.
|
|
|
|
if (enable_debug_utils)
|
|
|
|
context->EnableDebugUtils();
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
// Attempt to create the device.
|
2022-10-07 21:36:16 +00:00
|
|
|
if (!context->CreateDevice(surface, enable_validation_layer) ||
|
|
|
|
!context->CreateAllocator(vk_api_version))
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
// Since we are destroying the instance, we're also responsible for destroying the surface.
|
|
|
|
if (surface != VK_NULL_HANDLE)
|
|
|
|
vkDestroySurfaceKHR(instance, surface, nullptr);
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
bool VulkanContext::SelectDeviceExtensions(bool enable_surface)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
u32 extension_count = 0;
|
|
|
|
VkResult res =
|
|
|
|
vkEnumerateDeviceExtensionProperties(m_physical_device, nullptr, &extension_count, nullptr);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkEnumerateDeviceExtensionProperties failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (extension_count == 0)
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: No extensions supported by device.");
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<VkExtensionProperties> available_extension_list(extension_count);
|
|
|
|
res = vkEnumerateDeviceExtensionProperties(m_physical_device, nullptr, &extension_count,
|
|
|
|
available_extension_list.data());
|
2018-03-15 00:34:35 +00:00
|
|
|
ASSERT(res == VK_SUCCESS);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
for (const auto& extension_properties : available_extension_list)
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "Available extension: {}", extension_properties.extensionName);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
auto AddExtension = [&](const char* name, bool required) {
|
2016-08-13 12:57:50 +00:00
|
|
|
if (std::find_if(available_extension_list.begin(), available_extension_list.end(),
|
|
|
|
[&](const VkExtensionProperties& properties) {
|
|
|
|
return !strcmp(name, properties.extensionName);
|
|
|
|
}) != available_extension_list.end())
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "Enabling extension: {}", name);
|
2019-09-30 15:07:36 +00:00
|
|
|
m_device_extensions.push_back(name);
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (required)
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: Missing required extension {}.", name);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2017-10-11 13:15:08 +00:00
|
|
|
return false;
|
2016-08-13 12:57:50 +00:00
|
|
|
};
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
if (enable_surface && !AddExtension(VK_KHR_SWAPCHAIN_EXTENSION_NAME, true))
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
|
2019-09-30 15:10:08 +00:00
|
|
|
#ifdef SUPPORTS_VULKAN_EXCLUSIVE_FULLSCREEN
|
|
|
|
// VK_EXT_full_screen_exclusive
|
|
|
|
if (AddExtension(VK_EXT_FULL_SCREEN_EXCLUSIVE_EXTENSION_NAME, true))
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "Using VK_EXT_full_screen_exclusive for exclusive fullscreen.");
|
2019-09-30 15:10:08 +00:00
|
|
|
#endif
|
|
|
|
|
2022-10-07 21:36:16 +00:00
|
|
|
AddExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, false);
|
|
|
|
AddExtension(VK_EXT_MEMORY_BUDGET_EXTENSION_NAME, false);
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VulkanContext::SelectDeviceFeatures()
|
|
|
|
{
|
|
|
|
VkPhysicalDeviceProperties properties;
|
|
|
|
vkGetPhysicalDeviceProperties(m_physical_device, &properties);
|
|
|
|
|
|
|
|
VkPhysicalDeviceFeatures available_features;
|
|
|
|
vkGetPhysicalDeviceFeatures(m_physical_device, &available_features);
|
|
|
|
|
|
|
|
// Not having geometry shaders or wide lines will cause issues with rendering.
|
|
|
|
if (!available_features.geometryShader && !available_features.wideLines)
|
2020-11-09 08:26:14 +00:00
|
|
|
WARN_LOG_FMT(VIDEO, "Vulkan: Missing both geometryShader and wideLines features.");
|
2016-08-13 12:57:50 +00:00
|
|
|
if (!available_features.largePoints)
|
2020-11-09 08:26:14 +00:00
|
|
|
WARN_LOG_FMT(VIDEO, "Vulkan: Missing large points feature. CPU EFB writes will be slower.");
|
2016-08-13 12:57:50 +00:00
|
|
|
if (!available_features.occlusionQueryPrecise)
|
2020-11-09 08:26:14 +00:00
|
|
|
{
|
|
|
|
WARN_LOG_FMT(VIDEO,
|
|
|
|
"Vulkan: Missing precise occlusion queries. Perf queries will be inaccurate.");
|
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
// Enable the features we use.
|
|
|
|
m_device_features.dualSrcBlend = available_features.dualSrcBlend;
|
|
|
|
m_device_features.geometryShader = available_features.geometryShader;
|
|
|
|
m_device_features.samplerAnisotropy = available_features.samplerAnisotropy;
|
|
|
|
m_device_features.logicOp = available_features.logicOp;
|
|
|
|
m_device_features.fragmentStoresAndAtomics = available_features.fragmentStoresAndAtomics;
|
|
|
|
m_device_features.sampleRateShading = available_features.sampleRateShading;
|
|
|
|
m_device_features.largePoints = available_features.largePoints;
|
|
|
|
m_device_features.shaderStorageImageMultisample =
|
|
|
|
available_features.shaderStorageImageMultisample;
|
|
|
|
m_device_features.shaderTessellationAndGeometryPointSize =
|
|
|
|
available_features.shaderTessellationAndGeometryPointSize;
|
|
|
|
m_device_features.occlusionQueryPrecise = available_features.occlusionQueryPrecise;
|
|
|
|
m_device_features.shaderClipDistance = available_features.shaderClipDistance;
|
|
|
|
m_device_features.depthClamp = available_features.depthClamp;
|
2017-04-16 12:23:33 +00:00
|
|
|
m_device_features.textureCompressionBC = available_features.textureCompressionBC;
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VulkanContext::CreateDevice(VkSurfaceKHR surface, bool enable_validation_layer)
|
|
|
|
{
|
|
|
|
u32 queue_family_count;
|
|
|
|
vkGetPhysicalDeviceQueueFamilyProperties(m_physical_device, &queue_family_count, nullptr);
|
|
|
|
if (queue_family_count == 0)
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "No queue families found on specified vulkan physical device.");
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<VkQueueFamilyProperties> queue_family_properties(queue_family_count);
|
|
|
|
vkGetPhysicalDeviceQueueFamilyProperties(m_physical_device, &queue_family_count,
|
|
|
|
queue_family_properties.data());
|
2020-11-09 08:26:14 +00:00
|
|
|
INFO_LOG_FMT(VIDEO, "{} vulkan queue families", queue_family_count);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2017-09-04 21:35:53 +00:00
|
|
|
// Find graphics and present queues.
|
2016-08-13 12:57:50 +00:00
|
|
|
m_graphics_queue_family_index = queue_family_count;
|
2017-09-04 21:35:53 +00:00
|
|
|
m_present_queue_family_index = queue_family_count;
|
2016-08-13 12:57:50 +00:00
|
|
|
for (uint32_t i = 0; i < queue_family_count; i++)
|
|
|
|
{
|
2017-09-04 21:35:53 +00:00
|
|
|
VkBool32 graphics_supported = queue_family_properties[i].queueFlags & VK_QUEUE_GRAPHICS_BIT;
|
|
|
|
if (graphics_supported)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2017-09-04 21:35:53 +00:00
|
|
|
m_graphics_queue_family_index = i;
|
|
|
|
// Quit now, no need for a present queue.
|
|
|
|
if (!surface)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2017-09-04 21:35:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (surface)
|
|
|
|
{
|
|
|
|
VkBool32 present_supported;
|
|
|
|
VkResult res =
|
|
|
|
vkGetPhysicalDeviceSurfaceSupportKHR(m_physical_device, i, surface, &present_supported);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkGetPhysicalDeviceSurfaceSupportKHR failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (present_supported)
|
|
|
|
{
|
|
|
|
m_present_queue_family_index = i;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
2017-09-04 21:35:53 +00:00
|
|
|
|
|
|
|
// Prefer one queue family index that does both graphics and present.
|
|
|
|
if (graphics_supported && present_supported)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_graphics_queue_family_index == queue_family_count)
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: Failed to find an acceptable graphics queue.");
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
2017-09-04 21:35:53 +00:00
|
|
|
if (surface && m_present_queue_family_index == queue_family_count)
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
ERROR_LOG_FMT(VIDEO, "Vulkan: Failed to find an acceptable present queue.");
|
2017-09-04 21:35:53 +00:00
|
|
|
return false;
|
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
VkDeviceCreateInfo device_info = {};
|
|
|
|
device_info.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
|
|
|
|
device_info.pNext = nullptr;
|
|
|
|
device_info.flags = 0;
|
|
|
|
|
|
|
|
static constexpr float queue_priorities[] = {1.0f};
|
2017-09-04 21:35:53 +00:00
|
|
|
VkDeviceQueueCreateInfo graphics_queue_info = {};
|
|
|
|
graphics_queue_info.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
|
|
|
|
graphics_queue_info.pNext = nullptr;
|
|
|
|
graphics_queue_info.flags = 0;
|
|
|
|
graphics_queue_info.queueFamilyIndex = m_graphics_queue_family_index;
|
|
|
|
graphics_queue_info.queueCount = 1;
|
|
|
|
graphics_queue_info.pQueuePriorities = queue_priorities;
|
|
|
|
|
|
|
|
VkDeviceQueueCreateInfo present_queue_info = {};
|
|
|
|
present_queue_info.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
|
|
|
|
present_queue_info.pNext = nullptr;
|
|
|
|
present_queue_info.flags = 0;
|
|
|
|
present_queue_info.queueFamilyIndex = m_present_queue_family_index;
|
|
|
|
present_queue_info.queueCount = 1;
|
|
|
|
present_queue_info.pQueuePriorities = queue_priorities;
|
|
|
|
|
|
|
|
std::array<VkDeviceQueueCreateInfo, 2> queue_infos = {{
|
|
|
|
graphics_queue_info,
|
|
|
|
present_queue_info,
|
|
|
|
}};
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
device_info.queueCreateInfoCount = 1;
|
2021-12-29 02:18:47 +00:00
|
|
|
if (m_graphics_queue_family_index != m_present_queue_family_index &&
|
|
|
|
m_present_queue_family_index != queue_family_count)
|
2017-09-04 21:35:53 +00:00
|
|
|
{
|
|
|
|
device_info.queueCreateInfoCount = 2;
|
|
|
|
}
|
|
|
|
device_info.pQueueCreateInfos = queue_infos.data();
|
2016-08-13 12:57:50 +00:00
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
if (!SelectDeviceExtensions(surface != VK_NULL_HANDLE))
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
// convert std::string list to a char pointer list which we can feed in
|
|
|
|
std::vector<const char*> extension_name_pointers;
|
|
|
|
for (const std::string& name : m_device_extensions)
|
|
|
|
extension_name_pointers.push_back(name.c_str());
|
|
|
|
|
2016-08-13 12:57:50 +00:00
|
|
|
device_info.enabledLayerCount = 0;
|
|
|
|
device_info.ppEnabledLayerNames = nullptr;
|
2019-09-30 15:07:36 +00:00
|
|
|
device_info.enabledExtensionCount = static_cast<uint32_t>(extension_name_pointers.size());
|
|
|
|
device_info.ppEnabledExtensionNames = extension_name_pointers.data();
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
// Check for required features before creating.
|
|
|
|
if (!SelectDeviceFeatures())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
device_info.pEnabledFeatures = &m_device_features;
|
|
|
|
|
|
|
|
// Enable debug layer on debug builds
|
|
|
|
if (enable_validation_layer)
|
|
|
|
{
|
|
|
|
device_info.enabledLayerCount = 1;
|
2022-10-27 19:25:32 +00:00
|
|
|
device_info.ppEnabledLayerNames = &VALIDATION_LAYER_NAME;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
VkResult res = vkCreateDevice(m_physical_device, &device_info, nullptr, &m_device);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkCreateDevice failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// With the device created, we can fill the remaining entry points.
|
|
|
|
if (!LoadVulkanDeviceFunctions(m_device))
|
|
|
|
return false;
|
|
|
|
|
2017-09-04 21:35:53 +00:00
|
|
|
// Grab the graphics and present queues.
|
2016-08-13 12:57:50 +00:00
|
|
|
vkGetDeviceQueue(m_device, m_graphics_queue_family_index, 0, &m_graphics_queue);
|
2017-09-04 21:35:53 +00:00
|
|
|
if (surface)
|
|
|
|
{
|
|
|
|
vkGetDeviceQueue(m_device, m_present_queue_family_index, 0, &m_present_queue);
|
|
|
|
}
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-07 21:36:16 +00:00
|
|
|
bool VulkanContext::CreateAllocator(u32 vk_api_version)
|
|
|
|
{
|
|
|
|
VmaAllocatorCreateInfo allocator_info = {};
|
|
|
|
allocator_info.flags = VMA_ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT;
|
|
|
|
allocator_info.physicalDevice = m_physical_device;
|
|
|
|
allocator_info.device = m_device;
|
|
|
|
allocator_info.preferredLargeHeapBlockSize = 64 << 20;
|
|
|
|
allocator_info.pAllocationCallbacks = nullptr;
|
|
|
|
allocator_info.pDeviceMemoryCallbacks = nullptr;
|
|
|
|
allocator_info.pHeapSizeLimit = nullptr;
|
|
|
|
allocator_info.pVulkanFunctions = nullptr;
|
|
|
|
allocator_info.instance = m_instance;
|
|
|
|
allocator_info.vulkanApiVersion = vk_api_version;
|
|
|
|
allocator_info.pTypeExternalMemoryHandleTypes = nullptr;
|
|
|
|
|
|
|
|
if (SupportsDeviceExtension(VK_EXT_MEMORY_BUDGET_EXTENSION_NAME))
|
|
|
|
allocator_info.flags |= VMA_ALLOCATOR_CREATE_EXT_MEMORY_BUDGET_BIT;
|
|
|
|
|
|
|
|
VkResult res = vmaCreateAllocator(&allocator_info, &m_allocator);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vmaCreateAllocator failed: ");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
static VKAPI_ATTR VkBool32 VKAPI_CALL
|
|
|
|
DebugUtilsCallback(VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
|
|
|
|
VkDebugUtilsMessageTypeFlagsEXT messageTypes,
|
|
|
|
const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData, void* pUserData)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2022-10-27 19:25:32 +00:00
|
|
|
const std::string log_message = fmt::format("Vulkan debug message: {}", pCallbackData->pMessage);
|
|
|
|
if (messageSeverity == VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT)
|
2021-10-21 19:11:07 +00:00
|
|
|
ERROR_LOG_FMT(HOST_GPU, "{}", log_message);
|
2022-10-27 19:25:32 +00:00
|
|
|
else if (messageSeverity == VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT)
|
2021-10-21 19:11:07 +00:00
|
|
|
WARN_LOG_FMT(HOST_GPU, "{}", log_message);
|
2022-10-27 19:25:32 +00:00
|
|
|
else if (messageSeverity == VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT)
|
2021-10-21 19:11:07 +00:00
|
|
|
INFO_LOG_FMT(HOST_GPU, "{}", log_message);
|
2016-08-13 12:57:50 +00:00
|
|
|
else
|
2021-10-21 19:11:07 +00:00
|
|
|
DEBUG_LOG_FMT(HOST_GPU, "{}", log_message);
|
2016-08-13 12:57:50 +00:00
|
|
|
|
|
|
|
return VK_FALSE;
|
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
bool VulkanContext::EnableDebugUtils()
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
// Already enabled?
|
2022-10-27 19:25:32 +00:00
|
|
|
if (m_debug_utils_messenger != VK_NULL_HANDLE)
|
2016-08-13 12:57:50 +00:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// Check for presence of the functions before calling
|
2022-10-27 19:25:32 +00:00
|
|
|
if (!vkCreateDebugUtilsMessengerEXT || !vkDestroyDebugUtilsMessengerEXT ||
|
|
|
|
!vkSubmitDebugUtilsMessageEXT)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
VkDebugUtilsMessengerCreateInfoEXT messenger_info = {
|
|
|
|
VK_STRUCTURE_TYPE_DEBUG_UTILS_MESSENGER_CREATE_INFO_EXT,
|
|
|
|
nullptr,
|
|
|
|
0,
|
|
|
|
VK_DEBUG_UTILS_MESSAGE_SEVERITY_ERROR_BIT_EXT |
|
|
|
|
VK_DEBUG_UTILS_MESSAGE_SEVERITY_WARNING_BIT_EXT |
|
|
|
|
VK_DEBUG_UTILS_MESSAGE_SEVERITY_INFO_BIT_EXT |
|
|
|
|
VK_DEBUG_UTILS_MESSAGE_SEVERITY_VERBOSE_BIT_EXT,
|
2023-02-16 16:37:33 +00:00
|
|
|
VK_DEBUG_UTILS_MESSAGE_TYPE_VALIDATION_BIT_EXT | VK_DEBUG_UTILS_MESSAGE_TYPE_GENERAL_BIT_EXT |
|
2022-10-27 19:25:32 +00:00
|
|
|
VK_DEBUG_UTILS_MESSAGE_TYPE_PERFORMANCE_BIT_EXT,
|
|
|
|
DebugUtilsCallback,
|
|
|
|
nullptr};
|
|
|
|
|
|
|
|
VkResult res = vkCreateDebugUtilsMessengerEXT(m_instance, &messenger_info, nullptr,
|
|
|
|
&m_debug_utils_messenger);
|
2016-08-13 12:57:50 +00:00
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
2022-10-27 19:25:32 +00:00
|
|
|
LOG_VULKAN_ERROR(res, "vkCreateDebugUtilsMessengerEXT failed: ");
|
2016-08-13 12:57:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-10-27 19:25:32 +00:00
|
|
|
void VulkanContext::DisableDebugUtils()
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2022-10-27 19:25:32 +00:00
|
|
|
if (m_debug_utils_messenger != VK_NULL_HANDLE)
|
2016-08-13 12:57:50 +00:00
|
|
|
{
|
2022-10-27 19:25:32 +00:00
|
|
|
vkDestroyDebugUtilsMessengerEXT(m_instance, m_debug_utils_messenger, nullptr);
|
|
|
|
m_debug_utils_messenger = VK_NULL_HANDLE;
|
2016-08-13 12:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 15:07:36 +00:00
|
|
|
bool VulkanContext::SupportsDeviceExtension(const char* name) const
|
|
|
|
{
|
|
|
|
return std::any_of(m_device_extensions.begin(), m_device_extensions.end(),
|
|
|
|
[name](const std::string& extension) { return extension == name; });
|
|
|
|
}
|
|
|
|
|
2017-09-19 11:11:33 +00:00
|
|
|
void VulkanContext::InitDriverDetails()
|
|
|
|
{
|
|
|
|
DriverDetails::Vendor vendor;
|
|
|
|
DriverDetails::Driver driver;
|
|
|
|
|
|
|
|
// String comparisons aren't ideal, but there doesn't seem to be any other way to tell
|
|
|
|
// which vendor a driver is for. These names are based on the reports submitted to
|
|
|
|
// vulkan.gpuinfo.org, as of 19/09/2017.
|
|
|
|
std::string device_name = m_device_properties.deviceName;
|
|
|
|
u32 vendor_id = m_device_properties.vendorID;
|
|
|
|
if (vendor_id == 0x10DE)
|
|
|
|
{
|
|
|
|
// Currently, there is only the official NV binary driver.
|
|
|
|
// "NVIDIA" does not appear in the device name.
|
|
|
|
vendor = DriverDetails::VENDOR_NVIDIA;
|
|
|
|
driver = DriverDetails::DRIVER_NVIDIA;
|
|
|
|
}
|
|
|
|
else if (vendor_id == 0x1002 || vendor_id == 0x1022 ||
|
|
|
|
device_name.find("AMD") != std::string::npos)
|
|
|
|
{
|
|
|
|
// RADV always advertises its name in the device string.
|
|
|
|
// If not RADV, assume the AMD binary driver.
|
|
|
|
if (device_name.find("RADV") != std::string::npos)
|
|
|
|
{
|
|
|
|
vendor = DriverDetails::VENDOR_MESA;
|
|
|
|
driver = DriverDetails::DRIVER_R600;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
vendor = DriverDetails::VENDOR_ATI;
|
|
|
|
driver = DriverDetails::DRIVER_ATI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (vendor_id == 0x8086 || vendor_id == 0x8087 ||
|
|
|
|
device_name.find("Intel") != std::string::npos)
|
|
|
|
{
|
|
|
|
// Apart from the driver version, Intel does not appear to provide a way to
|
|
|
|
// differentiate between anv and the binary driver (Skylake+). Assume to be
|
2021-07-23 09:03:05 +00:00
|
|
|
// using anv if we're not running on Windows or macOS.
|
|
|
|
#if defined(WIN32) || defined(__APPLE__)
|
2017-09-19 11:11:33 +00:00
|
|
|
vendor = DriverDetails::VENDOR_INTEL;
|
|
|
|
driver = DriverDetails::DRIVER_INTEL;
|
|
|
|
#else
|
|
|
|
vendor = DriverDetails::VENDOR_MESA;
|
|
|
|
driver = DriverDetails::DRIVER_I965;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else if (vendor_id == 0x5143 || device_name.find("Adreno") != std::string::npos)
|
|
|
|
{
|
|
|
|
// Currently only the Qualcomm binary driver exists for Adreno.
|
|
|
|
vendor = DriverDetails::VENDOR_QUALCOMM;
|
|
|
|
driver = DriverDetails::DRIVER_QUALCOMM;
|
|
|
|
}
|
|
|
|
else if (vendor_id == 0x13B6 || device_name.find("Mali") != std::string::npos)
|
|
|
|
{
|
|
|
|
// Currently only the ARM binary driver exists for Mali.
|
|
|
|
vendor = DriverDetails::VENDOR_ARM;
|
|
|
|
driver = DriverDetails::DRIVER_ARM;
|
|
|
|
}
|
|
|
|
else if (vendor_id == 0x1010 || device_name.find("PowerVR") != std::string::npos)
|
|
|
|
{
|
|
|
|
// Currently only the binary driver exists for PowerVR.
|
|
|
|
vendor = DriverDetails::VENDOR_IMGTEC;
|
|
|
|
driver = DriverDetails::DRIVER_IMGTEC;
|
|
|
|
}
|
2021-07-30 08:02:51 +00:00
|
|
|
else if (device_name.find("Apple") != std::string::npos)
|
|
|
|
{
|
|
|
|
vendor = DriverDetails::VENDOR_APPLE;
|
|
|
|
driver = DriverDetails::DRIVER_PORTABILITY;
|
|
|
|
}
|
2017-09-19 11:11:33 +00:00
|
|
|
else
|
|
|
|
{
|
2020-11-09 08:26:14 +00:00
|
|
|
WARN_LOG_FMT(VIDEO, "Unknown Vulkan driver vendor, please report it to us.");
|
|
|
|
WARN_LOG_FMT(VIDEO, "Vendor ID: {:#X}, Device Name: {}", vendor_id, device_name);
|
2017-09-19 11:11:33 +00:00
|
|
|
vendor = DriverDetails::VENDOR_UNKNOWN;
|
|
|
|
driver = DriverDetails::DRIVER_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
2018-05-31 11:23:45 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
// Vulkan on macOS goes through Metal, and is not susceptible to the same bugs
|
|
|
|
// as the vendor's native Vulkan drivers. We use a different driver fields to
|
|
|
|
// differentiate MoltenVK.
|
|
|
|
driver = DriverDetails::DRIVER_PORTABILITY;
|
|
|
|
#endif
|
|
|
|
|
2017-09-19 11:11:33 +00:00
|
|
|
DriverDetails::Init(DriverDetails::API_VULKAN, vendor, driver,
|
|
|
|
static_cast<double>(m_device_properties.driverVersion),
|
2024-01-27 23:39:12 +00:00
|
|
|
DriverDetails::Family::UNKNOWN, std::move(device_name));
|
2017-09-19 11:11:33 +00:00
|
|
|
}
|
2019-03-22 10:39:37 +00:00
|
|
|
|
|
|
|
void VulkanContext::PopulateShaderSubgroupSupport()
|
|
|
|
{
|
2019-03-29 14:18:26 +00:00
|
|
|
// Vulkan 1.1 support is required for vkGetPhysicalDeviceProperties2(), but we can't rely on the
|
|
|
|
// function pointer alone.
|
|
|
|
if (!vkGetPhysicalDeviceProperties2 || (VK_VERSION_MAJOR(m_device_properties.apiVersion) == 1 &&
|
|
|
|
VK_VERSION_MINOR(m_device_properties.apiVersion) < 1))
|
|
|
|
{
|
2019-03-22 10:39:37 +00:00
|
|
|
return;
|
2019-03-29 14:18:26 +00:00
|
|
|
}
|
2019-03-22 10:39:37 +00:00
|
|
|
|
|
|
|
VkPhysicalDeviceProperties2 device_properties_2 = {};
|
|
|
|
device_properties_2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
|
|
|
|
|
|
|
|
VkPhysicalDeviceSubgroupProperties subgroup_properties = {};
|
|
|
|
subgroup_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES;
|
|
|
|
device_properties_2.pNext = &subgroup_properties;
|
|
|
|
|
|
|
|
vkGetPhysicalDeviceProperties2(m_physical_device, &device_properties_2);
|
|
|
|
|
|
|
|
m_shader_subgroup_size = subgroup_properties.subgroupSize;
|
|
|
|
|
|
|
|
// We require basic ops (for gl_SubgroupInvocationID), ballot (for subgroupBallot,
|
|
|
|
// subgroupBallotFindLSB), and arithmetic (for subgroupMin/subgroupMax).
|
2023-03-24 20:42:43 +00:00
|
|
|
// Shuffle is enabled as a workaround until SPIR-V >= 1.5 is enabled with broadcast(uniform)
|
|
|
|
// support.
|
|
|
|
constexpr VkSubgroupFeatureFlags required_operations =
|
|
|
|
VK_SUBGROUP_FEATURE_BASIC_BIT | VK_SUBGROUP_FEATURE_ARITHMETIC_BIT |
|
|
|
|
VK_SUBGROUP_FEATURE_BALLOT_BIT | VK_SUBGROUP_FEATURE_SHUFFLE_BIT;
|
2019-03-22 10:39:37 +00:00
|
|
|
m_supports_shader_subgroup_operations =
|
|
|
|
(subgroup_properties.supportedOperations & required_operations) == required_operations &&
|
2023-05-18 00:28:27 +00:00
|
|
|
subgroup_properties.supportedStages & VK_SHADER_STAGE_FRAGMENT_BIT;
|
2019-03-22 10:39:37 +00:00
|
|
|
}
|
2019-09-30 15:10:08 +00:00
|
|
|
|
|
|
|
bool VulkanContext::SupportsExclusiveFullscreen(const WindowSystemInfo& wsi, VkSurfaceKHR surface)
|
|
|
|
{
|
|
|
|
#ifdef SUPPORTS_VULKAN_EXCLUSIVE_FULLSCREEN
|
|
|
|
if (!surface || !vkGetPhysicalDeviceSurfaceCapabilities2KHR ||
|
|
|
|
!SupportsDeviceExtension(VK_EXT_FULL_SCREEN_EXCLUSIVE_EXTENSION_NAME))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
VkPhysicalDeviceSurfaceInfo2KHR si = {};
|
|
|
|
si.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SURFACE_INFO_2_KHR;
|
|
|
|
si.surface = surface;
|
|
|
|
|
|
|
|
auto platform_info = GetPlatformExclusiveFullscreenInfo(wsi);
|
|
|
|
si.pNext = &platform_info;
|
|
|
|
|
|
|
|
VkSurfaceCapabilities2KHR caps = {};
|
|
|
|
caps.sType = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_2_KHR;
|
|
|
|
|
|
|
|
VkSurfaceCapabilitiesFullScreenExclusiveEXT fullscreen_caps = {};
|
|
|
|
fullscreen_caps.sType = VK_STRUCTURE_TYPE_SURFACE_CAPABILITIES_FULL_SCREEN_EXCLUSIVE_EXT;
|
|
|
|
fullscreen_caps.fullScreenExclusiveSupported = VK_TRUE;
|
|
|
|
caps.pNext = &fullscreen_caps;
|
|
|
|
|
|
|
|
VkResult res = vkGetPhysicalDeviceSurfaceCapabilities2KHR(m_physical_device, &si, &caps);
|
|
|
|
if (res != VK_SUCCESS)
|
|
|
|
{
|
|
|
|
LOG_VULKAN_ERROR(res, "vkGetPhysicalDeviceSurfaceCapabilities2KHR failed:");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return fullscreen_caps.fullScreenExclusiveSupported;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
VkSurfaceFullScreenExclusiveWin32InfoEXT
|
|
|
|
VulkanContext::GetPlatformExclusiveFullscreenInfo(const WindowSystemInfo& wsi)
|
|
|
|
{
|
|
|
|
VkSurfaceFullScreenExclusiveWin32InfoEXT info = {};
|
|
|
|
info.sType = VK_STRUCTURE_TYPE_SURFACE_FULL_SCREEN_EXCLUSIVE_WIN32_INFO_EXT;
|
|
|
|
info.hmonitor =
|
|
|
|
MonitorFromWindow(static_cast<HWND>(wsi.render_surface), MONITOR_DEFAULTTOPRIMARY);
|
|
|
|
return info;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-01-29 23:12:06 +00:00
|
|
|
} // namespace Vulkan
|