| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392 |
- // SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project & 2024 suyu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #include <algorithm>
- #include <bitset>
- #include <chrono>
- #include <optional>
- #include <thread>
- #include <unordered_set>
- #include <utility>
- #include <vector>
- #include "common/assert.h"
- #include "common/literals.h"
- #include "common/polyfill_ranges.h"
- #include "common/settings.h"
- #include "video_core/vulkan_common/nsight_aftermath_tracker.h"
- #include "video_core/vulkan_common/vma.h"
- #include "video_core/vulkan_common/vulkan_device.h"
- #include "video_core/vulkan_common/vulkan_wrapper.h"
- #if defined(ANDROID) && defined(ARCHITECTURE_arm64)
- #include <adrenotools/bcenabler.h>
- #endif
- namespace Vulkan {
- using namespace Common::Literals;
- namespace {
- namespace Alternatives {
- constexpr std::array STENCIL8_UINT{
- VK_FORMAT_D16_UNORM_S8_UINT,
- VK_FORMAT_D24_UNORM_S8_UINT,
- VK_FORMAT_D32_SFLOAT_S8_UINT,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array DEPTH24_UNORM_STENCIL8_UINT{
- VK_FORMAT_D32_SFLOAT_S8_UINT,
- VK_FORMAT_D16_UNORM_S8_UINT,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array DEPTH24_UNORM_DONTCARE8{
- VK_FORMAT_D32_SFLOAT,
- VK_FORMAT_D16_UNORM,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array DEPTH16_UNORM_STENCIL8_UINT{
- VK_FORMAT_D24_UNORM_S8_UINT,
- VK_FORMAT_D32_SFLOAT_S8_UINT,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array B5G6R5_UNORM_PACK16{
- VK_FORMAT_R5G6B5_UNORM_PACK16,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array R4G4_UNORM_PACK8{
- VK_FORMAT_R8_UNORM,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array R16G16B16_SFLOAT{
- VK_FORMAT_R16G16B16A16_SFLOAT,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array R16G16B16_SSCALED{
- VK_FORMAT_R16G16B16A16_SSCALED,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array R8G8B8_SSCALED{
- VK_FORMAT_R8G8B8A8_SSCALED,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array VK_FORMAT_R32G32B32_SFLOAT{
- VK_FORMAT_R32G32B32A32_SFLOAT,
- VK_FORMAT_UNDEFINED,
- };
- constexpr std::array VK_FORMAT_A4B4G4R4_UNORM_PACK16{
- VK_FORMAT_R4G4B4A4_UNORM_PACK16,
- VK_FORMAT_UNDEFINED,
- };
- } // namespace Alternatives
- template <typename T>
- void SetNext(void**& next, T& data) {
- *next = &data;
- next = &data.pNext;
- }
- constexpr const VkFormat* GetFormatAlternatives(VkFormat format) {
- switch (format) {
- case VK_FORMAT_S8_UINT:
- return Alternatives::STENCIL8_UINT.data();
- case VK_FORMAT_D24_UNORM_S8_UINT:
- return Alternatives::DEPTH24_UNORM_STENCIL8_UINT.data();
- case VK_FORMAT_X8_D24_UNORM_PACK32:
- return Alternatives::DEPTH24_UNORM_DONTCARE8.data();
- case VK_FORMAT_D16_UNORM_S8_UINT:
- return Alternatives::DEPTH16_UNORM_STENCIL8_UINT.data();
- case VK_FORMAT_B5G6R5_UNORM_PACK16:
- return Alternatives::B5G6R5_UNORM_PACK16.data();
- case VK_FORMAT_R4G4_UNORM_PACK8:
- return Alternatives::R4G4_UNORM_PACK8.data();
- case VK_FORMAT_R16G16B16_SFLOAT:
- return Alternatives::R16G16B16_SFLOAT.data();
- case VK_FORMAT_R16G16B16_SSCALED:
- return Alternatives::R16G16B16_SSCALED.data();
- case VK_FORMAT_R8G8B8_SSCALED:
- return Alternatives::R8G8B8_SSCALED.data();
- case VK_FORMAT_R32G32B32_SFLOAT:
- return Alternatives::VK_FORMAT_R32G32B32_SFLOAT.data();
- case VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT:
- return Alternatives::VK_FORMAT_A4B4G4R4_UNORM_PACK16.data();
- default:
- return nullptr;
- }
- }
- VkFormatFeatureFlags GetFormatFeatures(VkFormatProperties properties, FormatType format_type) {
- switch (format_type) {
- case FormatType::Linear:
- return properties.linearTilingFeatures;
- case FormatType::Optimal:
- return properties.optimalTilingFeatures;
- case FormatType::Buffer:
- return properties.bufferFeatures;
- default:
- return {};
- }
- }
- std::unordered_map<VkFormat, VkFormatProperties> GetFormatProperties(vk::PhysicalDevice physical) {
- static constexpr std::array formats{
- VK_FORMAT_A1R5G5B5_UNORM_PACK16,
- VK_FORMAT_A2B10G10R10_SINT_PACK32,
- VK_FORMAT_A2B10G10R10_SNORM_PACK32,
- VK_FORMAT_A2B10G10R10_SSCALED_PACK32,
- VK_FORMAT_A2B10G10R10_UINT_PACK32,
- VK_FORMAT_A2B10G10R10_UNORM_PACK32,
- VK_FORMAT_A2B10G10R10_USCALED_PACK32,
- VK_FORMAT_A2R10G10B10_UNORM_PACK32,
- VK_FORMAT_A8B8G8R8_SINT_PACK32,
- VK_FORMAT_A8B8G8R8_SNORM_PACK32,
- VK_FORMAT_A8B8G8R8_SRGB_PACK32,
- VK_FORMAT_A8B8G8R8_UINT_PACK32,
- VK_FORMAT_A8B8G8R8_UNORM_PACK32,
- VK_FORMAT_ASTC_10x10_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x10_UNORM_BLOCK,
- VK_FORMAT_ASTC_10x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x5_UNORM_BLOCK,
- VK_FORMAT_ASTC_10x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x6_UNORM_BLOCK,
- VK_FORMAT_ASTC_10x8_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x8_UNORM_BLOCK,
- VK_FORMAT_ASTC_12x10_SRGB_BLOCK,
- VK_FORMAT_ASTC_12x10_UNORM_BLOCK,
- VK_FORMAT_ASTC_12x12_SRGB_BLOCK,
- VK_FORMAT_ASTC_12x12_UNORM_BLOCK,
- VK_FORMAT_ASTC_4x4_SRGB_BLOCK,
- VK_FORMAT_ASTC_4x4_UNORM_BLOCK,
- VK_FORMAT_ASTC_5x4_SRGB_BLOCK,
- VK_FORMAT_ASTC_5x4_UNORM_BLOCK,
- VK_FORMAT_ASTC_5x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_5x5_UNORM_BLOCK,
- VK_FORMAT_ASTC_6x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_6x5_UNORM_BLOCK,
- VK_FORMAT_ASTC_6x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_6x6_UNORM_BLOCK,
- VK_FORMAT_ASTC_8x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x5_UNORM_BLOCK,
- VK_FORMAT_ASTC_8x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x6_UNORM_BLOCK,
- VK_FORMAT_ASTC_8x8_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x8_UNORM_BLOCK,
- VK_FORMAT_B10G11R11_UFLOAT_PACK32,
- VK_FORMAT_B4G4R4A4_UNORM_PACK16,
- VK_FORMAT_B5G5R5A1_UNORM_PACK16,
- VK_FORMAT_B5G6R5_UNORM_PACK16,
- VK_FORMAT_B8G8R8A8_SRGB,
- VK_FORMAT_B8G8R8A8_UNORM,
- VK_FORMAT_BC1_RGBA_SRGB_BLOCK,
- VK_FORMAT_BC1_RGBA_UNORM_BLOCK,
- VK_FORMAT_BC2_SRGB_BLOCK,
- VK_FORMAT_BC2_UNORM_BLOCK,
- VK_FORMAT_BC3_SRGB_BLOCK,
- VK_FORMAT_BC3_UNORM_BLOCK,
- VK_FORMAT_BC4_SNORM_BLOCK,
- VK_FORMAT_BC4_UNORM_BLOCK,
- VK_FORMAT_BC5_SNORM_BLOCK,
- VK_FORMAT_BC5_UNORM_BLOCK,
- VK_FORMAT_BC6H_SFLOAT_BLOCK,
- VK_FORMAT_BC6H_UFLOAT_BLOCK,
- VK_FORMAT_BC7_SRGB_BLOCK,
- VK_FORMAT_BC7_UNORM_BLOCK,
- VK_FORMAT_D16_UNORM,
- VK_FORMAT_D16_UNORM_S8_UINT,
- VK_FORMAT_X8_D24_UNORM_PACK32,
- VK_FORMAT_D24_UNORM_S8_UINT,
- VK_FORMAT_D32_SFLOAT,
- VK_FORMAT_D32_SFLOAT_S8_UINT,
- VK_FORMAT_E5B9G9R9_UFLOAT_PACK32,
- VK_FORMAT_R16G16B16A16_SFLOAT,
- VK_FORMAT_R16G16B16A16_SINT,
- VK_FORMAT_R16G16B16A16_SNORM,
- VK_FORMAT_R16G16B16A16_SSCALED,
- VK_FORMAT_R16G16B16A16_UINT,
- VK_FORMAT_R16G16B16A16_UNORM,
- VK_FORMAT_R16G16B16A16_USCALED,
- VK_FORMAT_R16G16B16_SFLOAT,
- VK_FORMAT_R16G16B16_SINT,
- VK_FORMAT_R16G16B16_SNORM,
- VK_FORMAT_R16G16B16_SSCALED,
- VK_FORMAT_R16G16B16_UINT,
- VK_FORMAT_R16G16B16_UNORM,
- VK_FORMAT_R16G16B16_USCALED,
- VK_FORMAT_R16G16_SFLOAT,
- VK_FORMAT_R16G16_SINT,
- VK_FORMAT_R16G16_SNORM,
- VK_FORMAT_R16G16_SSCALED,
- VK_FORMAT_R16G16_UINT,
- VK_FORMAT_R16G16_UNORM,
- VK_FORMAT_R16G16_USCALED,
- VK_FORMAT_R16_SFLOAT,
- VK_FORMAT_R16_SINT,
- VK_FORMAT_R16_SNORM,
- VK_FORMAT_R16_SSCALED,
- VK_FORMAT_R16_UINT,
- VK_FORMAT_R16_UNORM,
- VK_FORMAT_R16_USCALED,
- VK_FORMAT_R32G32B32A32_SFLOAT,
- VK_FORMAT_R32G32B32A32_SINT,
- VK_FORMAT_R32G32B32A32_UINT,
- VK_FORMAT_R32G32B32_SFLOAT,
- VK_FORMAT_R32G32B32_SINT,
- VK_FORMAT_R32G32B32_UINT,
- VK_FORMAT_R32G32_SFLOAT,
- VK_FORMAT_R32G32_SINT,
- VK_FORMAT_R32G32_UINT,
- VK_FORMAT_R32_SFLOAT,
- VK_FORMAT_R32_SINT,
- VK_FORMAT_R32_UINT,
- VK_FORMAT_R4G4B4A4_UNORM_PACK16,
- VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT,
- VK_FORMAT_R4G4_UNORM_PACK8,
- VK_FORMAT_R5G5B5A1_UNORM_PACK16,
- VK_FORMAT_R5G6B5_UNORM_PACK16,
- VK_FORMAT_R8G8B8A8_SINT,
- VK_FORMAT_R8G8B8A8_SNORM,
- VK_FORMAT_R8G8B8A8_SRGB,
- VK_FORMAT_R8G8B8A8_SSCALED,
- VK_FORMAT_R8G8B8A8_UINT,
- VK_FORMAT_R8G8B8A8_UNORM,
- VK_FORMAT_R8G8B8A8_USCALED,
- VK_FORMAT_R8G8B8_SINT,
- VK_FORMAT_R8G8B8_SNORM,
- VK_FORMAT_R8G8B8_SSCALED,
- VK_FORMAT_R8G8B8_UINT,
- VK_FORMAT_R8G8B8_UNORM,
- VK_FORMAT_R8G8B8_USCALED,
- VK_FORMAT_R8G8_SINT,
- VK_FORMAT_R8G8_SNORM,
- VK_FORMAT_R8G8_SSCALED,
- VK_FORMAT_R8G8_UINT,
- VK_FORMAT_R8G8_UNORM,
- VK_FORMAT_R8G8_USCALED,
- VK_FORMAT_R8_SINT,
- VK_FORMAT_R8_SNORM,
- VK_FORMAT_R8_SSCALED,
- VK_FORMAT_R8_UINT,
- VK_FORMAT_R8_UNORM,
- VK_FORMAT_R8_USCALED,
- VK_FORMAT_S8_UINT,
- };
- std::unordered_map<VkFormat, VkFormatProperties> format_properties;
- for (const auto format : formats) {
- format_properties.emplace(format, physical.GetFormatProperties(format));
- }
- return format_properties;
- }
- #if defined(ANDROID) && defined(ARCHITECTURE_arm64)
- void OverrideBcnFormats(std::unordered_map<VkFormat, VkFormatProperties>& format_properties) {
- // These properties are extracted from Adreno driver 512.687.0
- constexpr VkFormatFeatureFlags tiling_features{
- VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT | VK_FORMAT_FEATURE_BLIT_SRC_BIT |
- VK_FORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT | VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
- VK_FORMAT_FEATURE_TRANSFER_DST_BIT};
- constexpr VkFormatFeatureFlags buffer_features{VK_FORMAT_FEATURE_UNIFORM_TEXEL_BUFFER_BIT};
- static constexpr std::array bcn_formats{
- VK_FORMAT_BC1_RGBA_SRGB_BLOCK, VK_FORMAT_BC1_RGBA_UNORM_BLOCK, VK_FORMAT_BC2_SRGB_BLOCK,
- VK_FORMAT_BC2_UNORM_BLOCK, VK_FORMAT_BC3_SRGB_BLOCK, VK_FORMAT_BC3_UNORM_BLOCK,
- VK_FORMAT_BC4_SNORM_BLOCK, VK_FORMAT_BC4_UNORM_BLOCK, VK_FORMAT_BC5_SNORM_BLOCK,
- VK_FORMAT_BC5_UNORM_BLOCK, VK_FORMAT_BC6H_SFLOAT_BLOCK, VK_FORMAT_BC6H_UFLOAT_BLOCK,
- VK_FORMAT_BC7_SRGB_BLOCK, VK_FORMAT_BC7_UNORM_BLOCK,
- };
- for (const auto format : bcn_formats) {
- format_properties[format].linearTilingFeatures = tiling_features;
- format_properties[format].optimalTilingFeatures = tiling_features;
- format_properties[format].bufferFeatures = buffer_features;
- }
- }
- #endif
- NvidiaArchitecture GetNvidiaArchitecture(vk::PhysicalDevice physical,
- const std::set<std::string, std::less<>>& exts) {
- if (exts.contains(VK_KHR_FRAGMENT_SHADING_RATE_EXTENSION_NAME)) {
- VkPhysicalDeviceFragmentShadingRatePropertiesKHR shading_rate_props{};
- shading_rate_props.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FRAGMENT_SHADING_RATE_PROPERTIES_KHR;
- VkPhysicalDeviceProperties2 physical_properties{};
- physical_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
- physical_properties.pNext = &shading_rate_props;
- physical.GetProperties2(physical_properties);
- if (shading_rate_props.primitiveFragmentShadingRateWithMultipleViewports) {
- // Only Ampere and newer support this feature
- // TODO: Find a way to differentiate Ampere and Ada
- return NvidiaArchitecture::Arch_AmpereOrNewer;
- }
- return NvidiaArchitecture::Arch_Turing;
- }
- if (exts.contains(VK_EXT_BLEND_OPERATION_ADVANCED_EXTENSION_NAME)) {
- VkPhysicalDeviceBlendOperationAdvancedPropertiesEXT advanced_blending_props{};
- advanced_blending_props.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_BLEND_OPERATION_ADVANCED_PROPERTIES_EXT;
- VkPhysicalDeviceProperties2 physical_properties{};
- physical_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
- physical_properties.pNext = &advanced_blending_props;
- physical.GetProperties2(physical_properties);
- if (advanced_blending_props.advancedBlendMaxColorAttachments == 1) {
- return NvidiaArchitecture::Arch_Maxwell;
- }
- if (exts.contains(VK_EXT_CONSERVATIVE_RASTERIZATION_EXTENSION_NAME)) {
- VkPhysicalDeviceConservativeRasterizationPropertiesEXT conservative_raster_props{};
- conservative_raster_props.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_CONSERVATIVE_RASTERIZATION_PROPERTIES_EXT;
- physical_properties.pNext = &conservative_raster_props;
- physical.GetProperties2(physical_properties);
- if (conservative_raster_props.degenerateLinesRasterized) {
- return NvidiaArchitecture::Arch_Volta;
- }
- return NvidiaArchitecture::Arch_Pascal;
- }
- }
- return NvidiaArchitecture::Arch_KeplerOrOlder;
- }
- std::vector<const char*> ExtensionListForVulkan(
- const std::set<std::string, std::less<>>& extensions) {
- std::vector<const char*> output;
- output.reserve(extensions.size());
- for (const auto& extension : extensions) {
- output.push_back(extension.c_str());
- }
- return output;
- }
- } // Anonymous namespace
- void Device::RemoveExtension(bool& extension, const std::string& extension_name) {
- extension = false;
- loaded_extensions.erase(extension_name);
- }
- void Device::RemoveExtensionIfUnsuitable(bool is_suitable, const std::string& extension_name) {
- if (loaded_extensions.contains(extension_name) && !is_suitable) {
- LOG_WARNING(Render_Vulkan, "Removing unsuitable extension {}", extension_name);
- this->RemoveExtension(is_suitable, extension_name);
- }
- }
- template <typename Feature>
- void Device::RemoveExtensionFeature(bool& extension, Feature& feature,
- const std::string& extension_name) {
- // Unload extension.
- this->RemoveExtension(extension, extension_name);
- // Save sType and pNext for chain.
- VkStructureType sType = feature.sType;
- void* pNext = feature.pNext;
- // Clear feature struct and restore chain.
- feature = {};
- feature.sType = sType;
- feature.pNext = pNext;
- }
- template <typename Feature>
- void Device::RemoveExtensionFeatureIfUnsuitable(bool is_suitable, Feature& feature,
- const std::string& extension_name) {
- if (loaded_extensions.contains(extension_name) && !is_suitable) {
- LOG_WARNING(Render_Vulkan, "Removing features for unsuitable extension {}", extension_name);
- this->RemoveExtensionFeature(is_suitable, feature, extension_name);
- }
- }
- Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR surface,
- const vk::InstanceDispatch& dld_)
- : instance{instance_}, dld{dld_}, physical{physical_},
- format_properties(GetFormatProperties(physical)) {
- // Get suitability and device properties.
- const bool is_suitable = GetSuitability(surface != nullptr);
- const VkDriverId driver_id = properties.driver.driverID;
- const auto device_id = properties.properties.deviceID;
- const bool is_radv = driver_id == VK_DRIVER_ID_MESA_RADV;
- const bool is_amd_driver =
- driver_id == VK_DRIVER_ID_AMD_PROPRIETARY || driver_id == VK_DRIVER_ID_AMD_OPEN_SOURCE;
- const bool is_amd = is_amd_driver || is_radv;
- const bool is_intel_windows = driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS;
- const bool is_intel_anv = driver_id == VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA;
- const bool is_nvidia = driver_id == VK_DRIVER_ID_NVIDIA_PROPRIETARY;
- const bool is_mvk = driver_id == VK_DRIVER_ID_MOLTENVK;
- const bool is_qualcomm = driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY;
- const bool is_turnip = driver_id == VK_DRIVER_ID_MESA_TURNIP;
- const bool is_s8gen2 = device_id == 0x43050a01;
- const bool is_arm = driver_id == VK_DRIVER_ID_ARM_PROPRIETARY;
- if ((is_mvk || is_qualcomm || is_turnip || is_arm) && !is_suitable) {
- LOG_WARNING(Render_Vulkan, "Unsuitable driver, continuing anyway");
- } else if (!is_suitable) {
- throw vk::Exception(VK_ERROR_INCOMPATIBLE_DRIVER);
- }
- if (is_nvidia) {
- nvidia_arch = GetNvidiaArchitecture(physical, supported_extensions);
- }
- SetupFamilies(surface);
- const auto queue_cis = GetDeviceQueueCreateInfos();
- // GetSuitability has already configured the linked list of features for us.
- // Reuse it here.
- const void* first_next = &features2;
- VkDeviceDiagnosticsConfigCreateInfoNV diagnostics_nv{};
- if (Settings::values.enable_nsight_aftermath && extensions.device_diagnostics_config) {
- nsight_aftermath_tracker = std::make_unique<NsightAftermathTracker>();
- diagnostics_nv = {
- .sType = VK_STRUCTURE_TYPE_DEVICE_DIAGNOSTICS_CONFIG_CREATE_INFO_NV,
- .pNext = &features2,
- .flags = VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_SHADER_DEBUG_INFO_BIT_NV |
- VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_RESOURCE_TRACKING_BIT_NV |
- VK_DEVICE_DIAGNOSTICS_CONFIG_ENABLE_AUTOMATIC_CHECKPOINTS_BIT_NV,
- };
- first_next = &diagnostics_nv;
- }
- is_blit_depth24_stencil8_supported = TestDepthStencilBlits(VK_FORMAT_D24_UNORM_S8_UINT);
- is_blit_depth32_stencil8_supported = TestDepthStencilBlits(VK_FORMAT_D32_SFLOAT_S8_UINT);
- is_optimal_astc_supported = ComputeIsOptimalAstcSupported();
- is_warp_potentially_bigger = !extensions.subgroup_size_control ||
- properties.subgroup_size_control.maxSubgroupSize > GuestWarpSize;
- is_integrated = properties.properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU;
- is_virtual = properties.properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU;
- is_non_gpu = properties.properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_OTHER ||
- properties.properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_CPU;
- supports_d24_depth =
- IsFormatSupported(VK_FORMAT_D24_UNORM_S8_UINT,
- VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT, FormatType::Optimal);
- supports_conditional_barriers = !(is_intel_anv || is_intel_windows);
- CollectPhysicalMemoryInfo();
- CollectToolingInfo();
- if (is_qualcomm || is_turnip) {
- LOG_WARNING(Render_Vulkan,
- "Qualcomm and Turnip drivers have broken VK_EXT_custom_border_color");
- RemoveExtensionFeature(extensions.custom_border_color, features.custom_border_color,
- VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME);
- }
- if (is_qualcomm) {
- must_emulate_scaled_formats = true;
- LOG_WARNING(Render_Vulkan, "Qualcomm drivers have broken VK_EXT_extended_dynamic_state");
- RemoveExtensionFeature(extensions.extended_dynamic_state, features.extended_dynamic_state,
- VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
- LOG_WARNING(Render_Vulkan,
- "Qualcomm drivers have a slow VK_KHR_push_descriptor implementation");
- RemoveExtension(extensions.push_descriptor, VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME);
- #if defined(ANDROID) && defined(ARCHITECTURE_arm64)
- // Patch the driver to enable BCn textures.
- const auto major = (properties.properties.driverVersion >> 24) << 2;
- const auto minor = (properties.properties.driverVersion >> 12) & 0xFFFU;
- const auto vendor = properties.properties.vendorID;
- const auto patch_status = adrenotools_get_bcn_type(major, minor, vendor);
- if (patch_status == ADRENOTOOLS_BCN_PATCH) {
- LOG_INFO(Render_Vulkan, "Patching Adreno driver to support BCn texture formats");
- if (adrenotools_patch_bcn(
- reinterpret_cast<void*>(dld.vkGetPhysicalDeviceFormatProperties))) {
- OverrideBcnFormats(format_properties);
- } else {
- LOG_ERROR(Render_Vulkan, "Patch failed! Driver code may now crash");
- }
- } else if (patch_status == ADRENOTOOLS_BCN_BLOB) {
- LOG_INFO(Render_Vulkan, "Adreno driver supports BCn textures without patches");
- } else {
- LOG_WARNING(Render_Vulkan, "Adreno driver can't be patched to enable BCn textures");
- }
- #endif
- }
- if (is_arm) {
- must_emulate_scaled_formats = true;
- LOG_WARNING(Render_Vulkan, "ARM drivers have broken VK_EXT_extended_dynamic_state");
- RemoveExtensionFeature(extensions.extended_dynamic_state, features.extended_dynamic_state,
- VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
- }
- if (is_nvidia) {
- const u32 nv_major_version = (properties.properties.driverVersion >> 22) & 0x3ff;
- const auto arch = GetNvidiaArch();
- if (arch >= NvidiaArchitecture::Arch_AmpereOrNewer) {
- LOG_WARNING(Render_Vulkan, "Ampere and newer have broken float16 math");
- features.shader_float16_int8.shaderFloat16 = false;
- } else if (arch <= NvidiaArchitecture::Arch_Volta) {
- if (nv_major_version < 527) {
- LOG_WARNING(Render_Vulkan, "Volta and older have broken VK_KHR_push_descriptor");
- RemoveExtension(extensions.push_descriptor, VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME);
- }
- }
- if (nv_major_version >= 510) {
- LOG_WARNING(Render_Vulkan, "NVIDIA Drivers >= 510 do not support MSAA image blits");
- cant_blit_msaa = true;
- }
- }
- if (extensions.extended_dynamic_state && is_radv) {
- // Mask driver version variant
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version < VK_MAKE_API_VERSION(0, 21, 2, 0)) {
- LOG_WARNING(Render_Vulkan,
- "RADV versions older than 21.2 have broken VK_EXT_extended_dynamic_state");
- RemoveExtensionFeature(extensions.extended_dynamic_state,
- features.extended_dynamic_state,
- VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
- }
- }
- if (extensions.extended_dynamic_state2 && is_radv) {
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version < VK_MAKE_API_VERSION(0, 22, 3, 1)) {
- LOG_WARNING(
- Render_Vulkan,
- "RADV versions older than 22.3.1 have broken VK_EXT_extended_dynamic_state2");
- RemoveExtensionFeature(extensions.extended_dynamic_state2,
- features.extended_dynamic_state2,
- VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
- }
- }
- if (extensions.extended_dynamic_state2 && is_qualcomm) {
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version >= VK_MAKE_API_VERSION(0, 0, 676, 0) &&
- version < VK_MAKE_API_VERSION(0, 0, 680, 0)) {
- // Qualcomm Adreno 7xx drivers do not properly support extended_dynamic_state2.
- LOG_WARNING(Render_Vulkan,
- "Qualcomm Adreno 7xx drivers have broken VK_EXT_extended_dynamic_state2");
- RemoveExtensionFeature(extensions.extended_dynamic_state2,
- features.extended_dynamic_state2,
- VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
- }
- }
- // Mesa RadV drivers still have broken extendedDynamicState3ColorBlendEquation support.
- if (extensions.extended_dynamic_state3 && is_radv) {
- LOG_WARNING(Render_Vulkan, "RADV has broken extendedDynamicState3ColorBlendEquation");
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false;
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false;
- dynamic_state3_blending = false;
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version < VK_MAKE_API_VERSION(0, 23, 1, 0)) {
- LOG_WARNING(Render_Vulkan,
- "RADV versions older than 23.1.0 have broken depth clamp dynamic state");
- features.extended_dynamic_state3.extendedDynamicState3DepthClampEnable = false;
- dynamic_state3_enables = false;
- }
- }
- // AMD still has broken extendedDynamicState3ColorBlendEquation on RDNA3.
- // TODO: distinguis RDNA3 from other uArchs.
- if (extensions.extended_dynamic_state3 && is_amd_driver) {
- LOG_WARNING(Render_Vulkan,
- "AMD drivers have broken extendedDynamicState3ColorBlendEquation");
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable = false;
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation = false;
- dynamic_state3_blending = false;
- }
- if (extensions.vertex_input_dynamic_state && is_radv) {
- // TODO(ameerj): Blacklist only offending driver versions
- // TODO(ameerj): Confirm if RDNA1 is affected
- const bool is_rdna2 =
- supported_extensions.contains(VK_KHR_FRAGMENT_SHADING_RATE_EXTENSION_NAME);
- if (is_rdna2) {
- LOG_WARNING(Render_Vulkan,
- "RADV has broken VK_EXT_vertex_input_dynamic_state on RDNA2 hardware");
- RemoveExtensionFeature(extensions.vertex_input_dynamic_state,
- features.vertex_input_dynamic_state,
- VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME);
- }
- }
- if (extensions.vertex_input_dynamic_state && is_qualcomm) {
- // Qualcomm drivers do not properly support vertex_input_dynamic_state.
- LOG_WARNING(Render_Vulkan,
- "Qualcomm drivers have broken VK_EXT_vertex_input_dynamic_state");
- RemoveExtensionFeature(extensions.vertex_input_dynamic_state,
- features.vertex_input_dynamic_state,
- VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME);
- }
- sets_per_pool = 64;
- if (is_amd_driver) {
- // AMD drivers need a higher amount of Sets per Pool in certain circumstances like in XC2.
- sets_per_pool = 96;
- // Disable VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT on AMD GCN4 and lower as it is broken.
- if (!features.shader_float16_int8.shaderFloat16) {
- LOG_WARNING(Render_Vulkan,
- "AMD GCN4 and earlier have broken VK_IMAGE_CREATE_CUBE_COMPATIBLE_BIT");
- has_broken_cube_compatibility = true;
- }
- }
- if (is_qualcomm) {
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version < VK_MAKE_API_VERSION(0, 255, 615, 512)) {
- has_broken_parallel_compiling = true;
- }
- }
- if (extensions.sampler_filter_minmax && is_amd) {
- // Disable ext_sampler_filter_minmax on AMD GCN4 and lower as it is broken.
- if (!features.shader_float16_int8.shaderFloat16) {
- LOG_WARNING(Render_Vulkan,
- "AMD GCN4 and earlier have broken VK_EXT_sampler_filter_minmax");
- RemoveExtension(extensions.sampler_filter_minmax,
- VK_EXT_SAMPLER_FILTER_MINMAX_EXTENSION_NAME);
- }
- }
- if (extensions.vertex_input_dynamic_state && is_intel_windows) {
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version < VK_MAKE_API_VERSION(27, 20, 100, 0)) {
- LOG_WARNING(Render_Vulkan, "Intel has broken VK_EXT_vertex_input_dynamic_state");
- RemoveExtensionFeature(extensions.vertex_input_dynamic_state,
- features.vertex_input_dynamic_state,
- VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME);
- }
- }
- if (features.shader_float16_int8.shaderFloat16 && is_intel_windows) {
- // Intel's compiler crashes when using fp16 on Astral Chain, disable it for the time being.
- LOG_WARNING(Render_Vulkan, "Intel has broken float16 math");
- features.shader_float16_int8.shaderFloat16 = false;
- }
- if (is_intel_windows) {
- LOG_WARNING(Render_Vulkan, "Intel proprietary drivers do not support MSAA image blits");
- cant_blit_msaa = true;
- }
- has_broken_compute =
- CheckBrokenCompute(properties.driver.driverID, properties.properties.driverVersion) &&
- !Settings::values.enable_compute_pipelines.GetValue();
- if (is_intel_anv || (is_qualcomm && !is_s8gen2)) {
- LOG_WARNING(Render_Vulkan, "Driver does not support native BGR format");
- must_emulate_bgr565 = true;
- }
- if (extensions.push_descriptor && is_intel_anv) {
- const u32 version = (properties.properties.driverVersion << 3) >> 3;
- if (version >= VK_MAKE_API_VERSION(0, 22, 3, 0) &&
- version < VK_MAKE_API_VERSION(0, 23, 2, 0)) {
- // Disable VK_KHR_push_descriptor due to
- // mesa/mesa/-/commit/ff91c5ca42bc80aa411cb3fd8f550aa6fdd16bdc
- LOG_WARNING(Render_Vulkan,
- "ANV drivers 22.3.0 to 23.1.0 have broken VK_KHR_push_descriptor");
- RemoveExtension(extensions.push_descriptor, VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME);
- }
- } else if (extensions.push_descriptor && is_nvidia) {
- const auto arch = GetNvidiaArch();
- if (arch <= NvidiaArchitecture::Arch_Pascal) {
- LOG_WARNING(Render_Vulkan,
- "Pascal and older architectures have broken VK_KHR_push_descriptor");
- RemoveExtension(extensions.push_descriptor, VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME);
- }
- }
- if (is_mvk) {
- LOG_WARNING(Render_Vulkan,
- "MVK driver breaks when using more than 16 vertex attributes/bindings");
- properties.properties.limits.maxVertexInputAttributes =
- std::min(properties.properties.limits.maxVertexInputAttributes, 16U);
- properties.properties.limits.maxVertexInputBindings =
- std::min(properties.properties.limits.maxVertexInputBindings, 16U);
- }
- if (is_turnip) {
- LOG_WARNING(Render_Vulkan, "Turnip requires higher-than-reported binding limits");
- properties.properties.limits.maxVertexInputBindings = 32;
- }
- if (!extensions.extended_dynamic_state && extensions.extended_dynamic_state2) {
- LOG_INFO(Render_Vulkan,
- "Removing extendedDynamicState2 due to missing extendedDynamicState");
- RemoveExtensionFeature(extensions.extended_dynamic_state2, features.extended_dynamic_state2,
- VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
- }
- if (!extensions.extended_dynamic_state2 && extensions.extended_dynamic_state3) {
- LOG_INFO(Render_Vulkan,
- "Removing extendedDynamicState3 due to missing extendedDynamicState2");
- RemoveExtensionFeature(extensions.extended_dynamic_state3, features.extended_dynamic_state3,
- VK_EXT_EXTENDED_DYNAMIC_STATE_3_EXTENSION_NAME);
- dynamic_state3_blending = false;
- dynamic_state3_enables = false;
- }
- logical = vk::Device::Create(physical, queue_cis, ExtensionListForVulkan(loaded_extensions),
- first_next, dld);
- graphics_queue = logical.GetQueue(graphics_family);
- present_queue = logical.GetQueue(present_family);
- VmaVulkanFunctions functions{};
- functions.vkGetInstanceProcAddr = dld.vkGetInstanceProcAddr;
- functions.vkGetDeviceProcAddr = dld.vkGetDeviceProcAddr;
- const VmaAllocatorCreateInfo allocator_info = {
- .flags = VMA_ALLOCATOR_CREATE_EXTERNALLY_SYNCHRONIZED_BIT,
- .physicalDevice = physical,
- .device = *logical,
- .preferredLargeHeapBlockSize = 0,
- .pAllocationCallbacks = nullptr,
- .pDeviceMemoryCallbacks = nullptr,
- .pHeapSizeLimit = nullptr,
- .pVulkanFunctions = &functions,
- .instance = instance,
- .vulkanApiVersion = VK_API_VERSION_1_1,
- .pTypeExternalMemoryHandleTypes = nullptr,
- };
- vk::Check(vmaCreateAllocator(&allocator_info, &allocator));
- }
- Device::~Device() {
- vmaDestroyAllocator(allocator);
- }
- VkFormat Device::GetSupportedFormat(VkFormat wanted_format, VkFormatFeatureFlags wanted_usage,
- FormatType format_type) const {
- if (IsFormatSupported(wanted_format, wanted_usage, format_type)) {
- return wanted_format;
- }
- // The wanted format is not supported by hardware, search for alternatives
- const VkFormat* alternatives = GetFormatAlternatives(wanted_format);
- if (alternatives == nullptr) {
- LOG_ERROR(Render_Vulkan,
- "Format={} with usage={} and type={} has no defined alternatives and host "
- "hardware does not support it",
- wanted_format, wanted_usage, format_type);
- return wanted_format;
- }
- std::size_t i = 0;
- for (VkFormat alternative = *alternatives; alternative; alternative = alternatives[++i]) {
- if (!IsFormatSupported(alternative, wanted_usage, format_type)) {
- continue;
- }
- LOG_DEBUG(Render_Vulkan,
- "Emulating format={} with alternative format={} with usage={} and type={}",
- wanted_format, alternative, wanted_usage, format_type);
- return alternative;
- }
- // No alternatives found, panic
- LOG_ERROR(Render_Vulkan,
- "Format={} with usage={} and type={} is not supported by the host hardware and "
- "doesn't support any of the alternatives",
- wanted_format, wanted_usage, format_type);
- return wanted_format;
- }
- void Device::ReportLoss() const {
- LOG_CRITICAL(Render_Vulkan, "Device loss occurred!");
- // Wait for the log to flush and for Nsight Aftermath to dump the results
- std::this_thread::sleep_for(std::chrono::seconds{15});
- }
- void Device::SaveShader(std::span<const u32> spirv) const {
- if (nsight_aftermath_tracker) {
- nsight_aftermath_tracker->SaveShader(spirv);
- }
- }
- bool Device::ComputeIsOptimalAstcSupported() const {
- // Disable for now to avoid converting ASTC twice.
- static constexpr std::array astc_formats = {
- VK_FORMAT_ASTC_4x4_UNORM_BLOCK, VK_FORMAT_ASTC_4x4_SRGB_BLOCK,
- VK_FORMAT_ASTC_5x4_UNORM_BLOCK, VK_FORMAT_ASTC_5x4_SRGB_BLOCK,
- VK_FORMAT_ASTC_5x5_UNORM_BLOCK, VK_FORMAT_ASTC_5x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_6x5_UNORM_BLOCK, VK_FORMAT_ASTC_6x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_6x6_UNORM_BLOCK, VK_FORMAT_ASTC_6x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x5_UNORM_BLOCK, VK_FORMAT_ASTC_8x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x6_UNORM_BLOCK, VK_FORMAT_ASTC_8x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_8x8_UNORM_BLOCK, VK_FORMAT_ASTC_8x8_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x5_UNORM_BLOCK, VK_FORMAT_ASTC_10x5_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x6_UNORM_BLOCK, VK_FORMAT_ASTC_10x6_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x8_UNORM_BLOCK, VK_FORMAT_ASTC_10x8_SRGB_BLOCK,
- VK_FORMAT_ASTC_10x10_UNORM_BLOCK, VK_FORMAT_ASTC_10x10_SRGB_BLOCK,
- VK_FORMAT_ASTC_12x10_UNORM_BLOCK, VK_FORMAT_ASTC_12x10_SRGB_BLOCK,
- VK_FORMAT_ASTC_12x12_UNORM_BLOCK, VK_FORMAT_ASTC_12x12_SRGB_BLOCK,
- };
- if (!features.features.textureCompressionASTC_LDR) {
- return false;
- }
- const auto format_feature_usage{
- VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT | VK_FORMAT_FEATURE_BLIT_SRC_BIT |
- VK_FORMAT_FEATURE_BLIT_DST_BIT | VK_FORMAT_FEATURE_TRANSFER_SRC_BIT |
- VK_FORMAT_FEATURE_TRANSFER_DST_BIT};
- for (const auto format : astc_formats) {
- const auto physical_format_properties{physical.GetFormatProperties(format)};
- if ((physical_format_properties.optimalTilingFeatures & format_feature_usage) == 0) {
- return false;
- }
- }
- return true;
- }
- bool Device::TestDepthStencilBlits(VkFormat format) const {
- static constexpr VkFormatFeatureFlags required_features =
- VK_FORMAT_FEATURE_BLIT_SRC_BIT | VK_FORMAT_FEATURE_BLIT_DST_BIT;
- const auto test_features = [](VkFormatProperties props) {
- return (props.optimalTilingFeatures & required_features) == required_features;
- };
- return test_features(format_properties.at(format));
- }
- bool Device::IsFormatSupported(VkFormat wanted_format, VkFormatFeatureFlags wanted_usage,
- FormatType format_type) const {
- const auto it = format_properties.find(wanted_format);
- if (it == format_properties.end()) {
- UNIMPLEMENTED_MSG("Unimplemented format query={}", wanted_format);
- return true;
- }
- const auto supported_usage = GetFormatFeatures(it->second, format_type);
- return (supported_usage & wanted_usage) == wanted_usage;
- }
- std::string Device::GetDriverName() const {
- switch (properties.driver.driverID) {
- case VK_DRIVER_ID_AMD_PROPRIETARY:
- return "AMD";
- case VK_DRIVER_ID_AMD_OPEN_SOURCE:
- return "AMDVLK";
- case VK_DRIVER_ID_MESA_RADV:
- return "RADV";
- case VK_DRIVER_ID_NVIDIA_PROPRIETARY:
- return "NVIDIA";
- case VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS:
- return "Intel";
- case VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA:
- return "ANV";
- case VK_DRIVER_ID_IMAGINATION_PROPRIETARY:
- return "PowerVR";
- case VK_DRIVER_ID_QUALCOMM_PROPRIETARY:
- return "Qualcomm";
- case VK_DRIVER_ID_ARM_PROPRIETARY:
- return "Mali";
- case VK_DRIVER_ID_SAMSUNG_PROPRIETARY:
- return "Xclipse";
- case VK_DRIVER_ID_GOOGLE_SWIFTSHADER:
- return "SwiftShader";
- case VK_DRIVER_ID_BROADCOM_PROPRIETARY:
- return "Broadcom";
- case VK_DRIVER_ID_MESA_LLVMPIPE:
- return "Lavapipe";
- case VK_DRIVER_ID_MOLTENVK:
- return "MoltenVK";
- case VK_DRIVER_ID_VERISILICON_PROPRIETARY:
- return "Vivante";
- case VK_DRIVER_ID_MESA_TURNIP:
- return "Turnip";
- case VK_DRIVER_ID_MESA_V3DV:
- return "V3DV";
- case VK_DRIVER_ID_MESA_PANVK:
- return "PanVK";
- case VK_DRIVER_ID_MESA_VENUS:
- return "Venus";
- case VK_DRIVER_ID_MESA_DOZEN:
- return "Dozen";
- case VK_DRIVER_ID_MESA_NVK:
- return "NVK";
- case VK_DRIVER_ID_IMAGINATION_OPEN_SOURCE_MESA:
- return "PVR";
- // case VK_DRIVER_ID_MESA_AGXV:
- // return "Asahi";
- default:
- return properties.driver.driverName;
- }
- }
- bool Device::ShouldBoostClocks() const {
- const auto driver_id = properties.driver.driverID;
- const auto vendor_id = properties.properties.vendorID;
- const auto device_id = properties.properties.deviceID;
- const bool validated_driver =
- driver_id == VK_DRIVER_ID_AMD_PROPRIETARY || driver_id == VK_DRIVER_ID_AMD_OPEN_SOURCE ||
- driver_id == VK_DRIVER_ID_MESA_RADV || driver_id == VK_DRIVER_ID_NVIDIA_PROPRIETARY ||
- driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS ||
- driver_id == VK_DRIVER_ID_INTEL_OPEN_SOURCE_MESA ||
- driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY || driver_id == VK_DRIVER_ID_MESA_TURNIP;
- const bool is_steam_deck = (vendor_id == 0x1002 && device_id == 0x163F) ||
- (vendor_id == 0x1002 && device_id == 0x1435);
- const bool is_debugging = this->HasDebuggingToolAttached();
- return validated_driver && !is_steam_deck && !is_debugging;
- }
- bool Device::HasTimelineSemaphore() const {
- if (GetDriverID() == VK_DRIVER_ID_QUALCOMM_PROPRIETARY ||
- GetDriverID() == VK_DRIVER_ID_MESA_TURNIP) {
- // Timeline semaphores do not work properly on all Qualcomm drivers.
- // They generally work properly with Turnip drivers, but are problematic on some devices
- // (e.g. ZTE handsets with Snapdragon 870).
- return false;
- }
- return features.timeline_semaphore.timelineSemaphore;
- }
- bool Device::GetSuitability(bool requires_swapchain) {
- // Assume we will be suitable.
- bool suitable = true;
- // Configure properties.
- properties.properties = physical.GetProperties();
- // Set instance version.
- instance_version = properties.properties.apiVersion;
- // Minimum of API version 1.1 is required. (This is well-supported.)
- ASSERT(instance_version >= VK_API_VERSION_1_1);
- // Get available extensions.
- auto extension_properties = physical.EnumerateDeviceExtensionProperties();
- // Get the set of supported extensions.
- supported_extensions.clear();
- for (const VkExtensionProperties& property : extension_properties) {
- supported_extensions.insert(property.extensionName);
- }
- // Generate list of extensions to load.
- loaded_extensions.clear();
- #define EXTENSION(prefix, macro_name, var_name) \
- if (supported_extensions.contains(VK_##prefix##_##macro_name##_EXTENSION_NAME)) { \
- loaded_extensions.insert(VK_##prefix##_##macro_name##_EXTENSION_NAME); \
- extensions.var_name = true; \
- }
- #define FEATURE_EXTENSION(prefix, struct_name, macro_name, var_name) \
- if (supported_extensions.contains(VK_##prefix##_##macro_name##_EXTENSION_NAME)) { \
- loaded_extensions.insert(VK_##prefix##_##macro_name##_EXTENSION_NAME); \
- extensions.var_name = true; \
- }
- if (instance_version < VK_API_VERSION_1_2) {
- FOR_EACH_VK_FEATURE_1_2(FEATURE_EXTENSION);
- }
- if (instance_version < VK_API_VERSION_1_3) {
- FOR_EACH_VK_FEATURE_1_3(FEATURE_EXTENSION);
- }
- FOR_EACH_VK_FEATURE_EXT(FEATURE_EXTENSION);
- FOR_EACH_VK_EXTENSION(EXTENSION);
- #undef FEATURE_EXTENSION
- #undef EXTENSION
- // Some extensions are mandatory. Check those.
- #define CHECK_EXTENSION(extension_name) \
- if (!loaded_extensions.contains(extension_name)) { \
- LOG_ERROR(Render_Vulkan, "Missing required extension {}", extension_name); \
- suitable = false; \
- }
- #define LOG_EXTENSION(extension_name) \
- if (!loaded_extensions.contains(extension_name)) { \
- LOG_INFO(Render_Vulkan, "Device doesn't support extension {}", extension_name); \
- }
- FOR_EACH_VK_RECOMMENDED_EXTENSION(LOG_EXTENSION);
- FOR_EACH_VK_MANDATORY_EXTENSION(CHECK_EXTENSION);
- if (requires_swapchain) {
- CHECK_EXTENSION(VK_KHR_SWAPCHAIN_EXTENSION_NAME);
- }
- #undef LOG_EXTENSION
- #undef CHECK_EXTENSION
- // Generate the linked list of features to test.
- features2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FEATURES_2;
- // Set next pointer.
- void** next = &features2.pNext;
- // Test all features we know about. If the feature is not available in core at our
- // current API version, and was not enabled by an extension, skip testing the feature.
- // We set the structure sType explicitly here as it is zeroed by the constructor.
- #define FEATURE(prefix, struct_name, macro_name, var_name) \
- features.var_name.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_##macro_name##_FEATURES; \
- SetNext(next, features.var_name);
- #define EXT_FEATURE(prefix, struct_name, macro_name, var_name) \
- if (extensions.var_name) { \
- features.var_name.sType = \
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_##macro_name##_FEATURES_##prefix; \
- SetNext(next, features.var_name); \
- }
- FOR_EACH_VK_FEATURE_1_1(FEATURE);
- FOR_EACH_VK_FEATURE_EXT(EXT_FEATURE);
- if (instance_version >= VK_API_VERSION_1_2) {
- FOR_EACH_VK_FEATURE_1_2(FEATURE);
- } else {
- FOR_EACH_VK_FEATURE_1_2(EXT_FEATURE);
- }
- if (instance_version >= VK_API_VERSION_1_3) {
- FOR_EACH_VK_FEATURE_1_3(FEATURE);
- } else {
- FOR_EACH_VK_FEATURE_1_3(EXT_FEATURE);
- }
- #undef EXT_FEATURE
- #undef FEATURE
- // Perform the feature test.
- physical.GetFeatures2(features2);
- features.features = features2.features;
- // Some features are mandatory. Check those.
- #define CHECK_FEATURE(feature, name) \
- if (!features.feature.name) { \
- LOG_ERROR(Render_Vulkan, "Missing required feature {}", #name); \
- suitable = false; \
- }
- #define LOG_FEATURE(feature, name) \
- if (!features.feature.name) { \
- LOG_INFO(Render_Vulkan, "Device doesn't support feature {}", #name); \
- }
- FOR_EACH_VK_RECOMMENDED_FEATURE(LOG_FEATURE);
- FOR_EACH_VK_MANDATORY_FEATURE(CHECK_FEATURE);
- #undef LOG_FEATURE
- #undef CHECK_FEATURE
- // Generate linked list of properties.
- properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
- // Set next pointer.
- next = &properties2.pNext;
- // Get driver info.
- properties.driver.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES;
- SetNext(next, properties.driver);
- // Retrieve subgroup properties.
- properties.subgroup_properties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_PROPERTIES;
- SetNext(next, properties.subgroup_properties);
- // Retrieve relevant extension properties.
- if (extensions.shader_float_controls) {
- properties.float_controls.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT_CONTROLS_PROPERTIES;
- SetNext(next, properties.float_controls);
- }
- if (extensions.push_descriptor) {
- properties.push_descriptor.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES_KHR;
- SetNext(next, properties.push_descriptor);
- }
- if (extensions.subgroup_size_control || features.subgroup_size_control.subgroupSizeControl) {
- properties.subgroup_size_control.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SUBGROUP_SIZE_CONTROL_PROPERTIES;
- SetNext(next, properties.subgroup_size_control);
- }
- if (extensions.transform_feedback) {
- properties.transform_feedback.sType =
- VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TRANSFORM_FEEDBACK_PROPERTIES_EXT;
- SetNext(next, properties.transform_feedback);
- }
- // Perform the property fetch.
- physical.GetProperties2(properties2);
- properties.properties = properties2.properties;
- // Unload extensions if feature support is insufficient.
- RemoveUnsuitableExtensions();
- // Check limits.
- struct Limit {
- u32 minimum;
- u32 value;
- const char* name;
- };
- const VkPhysicalDeviceLimits& limits{properties.properties.limits};
- const std::array limits_report{
- Limit{65536, limits.maxUniformBufferRange, "maxUniformBufferRange"},
- Limit{16, limits.maxViewports, "maxViewports"},
- Limit{8, limits.maxColorAttachments, "maxColorAttachments"},
- Limit{8, limits.maxClipDistances, "maxClipDistances"},
- };
- for (const auto& [min, value, name] : limits_report) {
- if (value < min) {
- LOG_ERROR(Render_Vulkan, "{} has to be {} or greater but it is {}", name, min, value);
- suitable = false;
- }
- }
- // Return whether we were suitable.
- return suitable;
- }
- void Device::RemoveUnsuitableExtensions() {
- // VK_EXT_custom_border_color
- extensions.custom_border_color = features.custom_border_color.customBorderColors &&
- features.custom_border_color.customBorderColorWithoutFormat;
- RemoveExtensionFeatureIfUnsuitable(extensions.custom_border_color, features.custom_border_color,
- VK_EXT_CUSTOM_BORDER_COLOR_EXTENSION_NAME);
- // VK_EXT_depth_bias_control
- extensions.depth_bias_control =
- features.depth_bias_control.depthBiasControl &&
- features.depth_bias_control.leastRepresentableValueForceUnormRepresentation;
- RemoveExtensionFeatureIfUnsuitable(extensions.depth_bias_control, features.depth_bias_control,
- VK_EXT_DEPTH_BIAS_CONTROL_EXTENSION_NAME);
- // VK_EXT_depth_clip_control
- extensions.depth_clip_control = features.depth_clip_control.depthClipControl;
- RemoveExtensionFeatureIfUnsuitable(extensions.depth_clip_control, features.depth_clip_control,
- VK_EXT_DEPTH_CLIP_CONTROL_EXTENSION_NAME);
- // VK_EXT_extended_dynamic_state
- extensions.extended_dynamic_state = features.extended_dynamic_state.extendedDynamicState;
- RemoveExtensionFeatureIfUnsuitable(extensions.extended_dynamic_state,
- features.extended_dynamic_state,
- VK_EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME);
- // VK_EXT_extended_dynamic_state2
- extensions.extended_dynamic_state2 = features.extended_dynamic_state2.extendedDynamicState2;
- RemoveExtensionFeatureIfUnsuitable(extensions.extended_dynamic_state2,
- features.extended_dynamic_state2,
- VK_EXT_EXTENDED_DYNAMIC_STATE_2_EXTENSION_NAME);
- // VK_EXT_extended_dynamic_state3
- dynamic_state3_blending =
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEnable &&
- features.extended_dynamic_state3.extendedDynamicState3ColorBlendEquation &&
- features.extended_dynamic_state3.extendedDynamicState3ColorWriteMask;
- dynamic_state3_enables =
- features.extended_dynamic_state3.extendedDynamicState3DepthClampEnable &&
- features.extended_dynamic_state3.extendedDynamicState3LogicOpEnable;
- extensions.extended_dynamic_state3 = dynamic_state3_blending || dynamic_state3_enables;
- dynamic_state3_blending = dynamic_state3_blending && extensions.extended_dynamic_state3;
- dynamic_state3_enables = dynamic_state3_enables && extensions.extended_dynamic_state3;
- RemoveExtensionFeatureIfUnsuitable(extensions.extended_dynamic_state3,
- features.extended_dynamic_state3,
- VK_EXT_EXTENDED_DYNAMIC_STATE_3_EXTENSION_NAME);
- // VK_EXT_provoking_vertex
- extensions.provoking_vertex =
- features.provoking_vertex.provokingVertexLast &&
- features.provoking_vertex.transformFeedbackPreservesProvokingVertex;
- RemoveExtensionFeatureIfUnsuitable(extensions.provoking_vertex, features.provoking_vertex,
- VK_EXT_PROVOKING_VERTEX_EXTENSION_NAME);
- // VK_KHR_shader_atomic_int64
- extensions.shader_atomic_int64 = features.shader_atomic_int64.shaderBufferInt64Atomics &&
- features.shader_atomic_int64.shaderSharedInt64Atomics;
- RemoveExtensionFeatureIfUnsuitable(extensions.shader_atomic_int64, features.shader_atomic_int64,
- VK_KHR_SHADER_ATOMIC_INT64_EXTENSION_NAME);
- // VK_EXT_shader_demote_to_helper_invocation
- extensions.shader_demote_to_helper_invocation =
- features.shader_demote_to_helper_invocation.shaderDemoteToHelperInvocation;
- RemoveExtensionFeatureIfUnsuitable(extensions.shader_demote_to_helper_invocation,
- features.shader_demote_to_helper_invocation,
- VK_EXT_SHADER_DEMOTE_TO_HELPER_INVOCATION_EXTENSION_NAME);
- // VK_EXT_subgroup_size_control
- extensions.subgroup_size_control =
- features.subgroup_size_control.subgroupSizeControl &&
- properties.subgroup_size_control.minSubgroupSize <= GuestWarpSize &&
- properties.subgroup_size_control.maxSubgroupSize >= GuestWarpSize;
- RemoveExtensionFeatureIfUnsuitable(extensions.subgroup_size_control,
- features.subgroup_size_control,
- VK_EXT_SUBGROUP_SIZE_CONTROL_EXTENSION_NAME);
- // VK_EXT_transform_feedback
- extensions.transform_feedback =
- features.transform_feedback.transformFeedback &&
- features.transform_feedback.geometryStreams &&
- properties.transform_feedback.maxTransformFeedbackStreams >= 4 &&
- properties.transform_feedback.maxTransformFeedbackBuffers > 0 &&
- properties.transform_feedback.transformFeedbackQueries &&
- properties.transform_feedback.transformFeedbackDraw;
- RemoveExtensionFeatureIfUnsuitable(extensions.transform_feedback, features.transform_feedback,
- VK_EXT_TRANSFORM_FEEDBACK_EXTENSION_NAME);
- // VK_EXT_vertex_input_dynamic_state
- extensions.vertex_input_dynamic_state =
- features.vertex_input_dynamic_state.vertexInputDynamicState;
- RemoveExtensionFeatureIfUnsuitable(extensions.vertex_input_dynamic_state,
- features.vertex_input_dynamic_state,
- VK_EXT_VERTEX_INPUT_DYNAMIC_STATE_EXTENSION_NAME);
- // VK_KHR_pipeline_executable_properties
- if (Settings::values.renderer_shader_feedback.GetValue()) {
- extensions.pipeline_executable_properties =
- features.pipeline_executable_properties.pipelineExecutableInfo;
- RemoveExtensionFeatureIfUnsuitable(extensions.pipeline_executable_properties,
- features.pipeline_executable_properties,
- VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_EXTENSION_NAME);
- } else {
- RemoveExtensionFeature(extensions.pipeline_executable_properties,
- features.pipeline_executable_properties,
- VK_KHR_PIPELINE_EXECUTABLE_PROPERTIES_EXTENSION_NAME);
- }
- // VK_KHR_workgroup_memory_explicit_layout
- extensions.workgroup_memory_explicit_layout =
- features.features.shaderInt16 &&
- features.workgroup_memory_explicit_layout.workgroupMemoryExplicitLayout &&
- features.workgroup_memory_explicit_layout.workgroupMemoryExplicitLayout8BitAccess &&
- features.workgroup_memory_explicit_layout.workgroupMemoryExplicitLayout16BitAccess &&
- features.workgroup_memory_explicit_layout.workgroupMemoryExplicitLayoutScalarBlockLayout;
- RemoveExtensionFeatureIfUnsuitable(extensions.workgroup_memory_explicit_layout,
- features.workgroup_memory_explicit_layout,
- VK_KHR_WORKGROUP_MEMORY_EXPLICIT_LAYOUT_EXTENSION_NAME);
- }
- void Device::SetupFamilies(VkSurfaceKHR surface) {
- const std::vector queue_family_properties = physical.GetQueueFamilyProperties();
- std::optional<u32> graphics;
- std::optional<u32> present;
- for (u32 index = 0; index < static_cast<u32>(queue_family_properties.size()); ++index) {
- if (graphics && (present || !surface)) {
- break;
- }
- const VkQueueFamilyProperties& queue_family = queue_family_properties[index];
- if (queue_family.queueCount == 0) {
- continue;
- }
- if (queue_family.queueFlags & VK_QUEUE_GRAPHICS_BIT) {
- graphics = index;
- }
- if (surface && physical.GetSurfaceSupportKHR(index, surface)) {
- present = index;
- }
- }
- if (!graphics) {
- LOG_ERROR(Render_Vulkan, "Device lacks a graphics queue");
- throw vk::Exception(VK_ERROR_FEATURE_NOT_PRESENT);
- }
- if (surface && !present) {
- LOG_ERROR(Render_Vulkan, "Device lacks a present queue");
- throw vk::Exception(VK_ERROR_FEATURE_NOT_PRESENT);
- }
- if (graphics) {
- graphics_family = *graphics;
- }
- if (present) {
- present_family = *present;
- }
- }
- u64 Device::GetDeviceMemoryUsage() const {
- VkPhysicalDeviceMemoryBudgetPropertiesEXT budget;
- budget.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT;
- budget.pNext = nullptr;
- physical.GetMemoryProperties(&budget);
- u64 result{};
- for (const size_t heap : valid_heap_memory) {
- result += budget.heapUsage[heap];
- }
- return result;
- }
- void Device::CollectPhysicalMemoryInfo() {
- // Calculate limits using memory budget
- VkPhysicalDeviceMemoryBudgetPropertiesEXT budget{};
- budget.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT;
- const auto mem_info =
- physical.GetMemoryProperties(extensions.memory_budget ? &budget : nullptr);
- const auto& mem_properties = mem_info.memoryProperties;
- const size_t num_properties = mem_properties.memoryHeapCount;
- device_access_memory = 0;
- u64 device_initial_usage = 0;
- u64 local_memory = 0;
- for (size_t element = 0; element < num_properties; ++element) {
- const bool is_heap_local =
- (mem_properties.memoryHeaps[element].flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT) != 0;
- if (!is_integrated && !is_heap_local) {
- continue;
- }
- valid_heap_memory.push_back(element);
- if (is_heap_local) {
- local_memory += mem_properties.memoryHeaps[element].size;
- }
- if (extensions.memory_budget) {
- device_initial_usage += budget.heapUsage[element];
- device_access_memory += budget.heapBudget[element];
- continue;
- }
- device_access_memory += mem_properties.memoryHeaps[element].size;
- }
- if (!is_integrated) {
- const u64 reserve_memory = std::min<u64>(device_access_memory / 8, 1_GiB);
- device_access_memory -= reserve_memory;
- if (Settings::values.vram_usage_mode.GetValue() != Settings::VramUsageMode::Aggressive) {
- // Account for resolution scaling in memory limits
- const size_t normal_memory = 6_GiB;
- const size_t scaler_memory = 1_GiB * Settings::values.resolution_info.ScaleUp(1);
- device_access_memory =
- std::min<u64>(device_access_memory, normal_memory + scaler_memory);
- }
- return;
- }
- const s64 available_memory = static_cast<s64>(device_access_memory - device_initial_usage);
- device_access_memory = static_cast<u64>(std::max<s64>(
- std::min<s64>(available_memory - 8_GiB, 4_GiB), std::min<s64>(local_memory, 4_GiB)));
- }
- void Device::CollectToolingInfo() {
- if (!extensions.tooling_info) {
- return;
- }
- auto tools{physical.GetPhysicalDeviceToolProperties()};
- for (const VkPhysicalDeviceToolProperties& tool : tools) {
- const std::string_view name = tool.name;
- LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", name);
- has_renderdoc = has_renderdoc || name == "RenderDoc";
- has_nsight_graphics = has_nsight_graphics || name == "NVIDIA Nsight Graphics";
- }
- }
- std::vector<VkDeviceQueueCreateInfo> Device::GetDeviceQueueCreateInfos() const {
- static constexpr float QUEUE_PRIORITY = 1.0f;
- std::unordered_set<u32> unique_queue_families{graphics_family, present_family};
- std::vector<VkDeviceQueueCreateInfo> queue_cis;
- queue_cis.reserve(unique_queue_families.size());
- for (const u32 queue_family : unique_queue_families) {
- auto& ci = queue_cis.emplace_back(VkDeviceQueueCreateInfo{
- .sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO,
- .pNext = nullptr,
- .flags = 0,
- .queueFamilyIndex = queue_family,
- .queueCount = 1,
- .pQueuePriorities = nullptr,
- });
- ci.pQueuePriorities = &QUEUE_PRIORITY;
- }
- return queue_cis;
- }
- } // namespace Vulkan
|