summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFernando S <fsahmkow27@gmail.com>2021-09-16 07:05:58 +0200
committerGitHub <noreply@github.com>2021-09-16 07:05:58 +0200
commita606b1448b4d0b43f62583e3382298a6fb32eec2 (patch)
treebb7b168075dcfabe6950961eb9e2a76c70569a1c
parentMerge pull request #7010 from Morph1984/fs-timestamp (diff)
parentvulkan_device: Reorder Float16Int8 declaration (diff)
downloadyuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar.gz
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar.bz2
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar.lz
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar.xz
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.tar.zst
yuzu-a606b1448b4d0b43f62583e3382298a6fb32eec2.zip
-rw-r--r--src/video_core/vulkan_common/vulkan_device.cpp17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp
index 24fb50db9..c2ec9f76a 100644
--- a/src/video_core/vulkan_common/vulkan_device.cpp
+++ b/src/video_core/vulkan_common/vulkan_device.cpp
@@ -243,7 +243,6 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
SetupFamilies(surface);
SetupFeatures();
SetupProperties();
- CollectTelemetryParameters();
const auto queue_cis = GetDeviceQueueCreateInfos();
const std::vector extensions = LoadExtensions(surface != nullptr);
@@ -369,20 +368,9 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
};
SetNext(next, demote);
- if (driver_id == VK_DRIVER_ID_AMD_PROPRIETARY || driver_id == VK_DRIVER_ID_AMD_OPEN_SOURCE) {
- const u32 version = properties.driverVersion;
- // Broken in this driver
- if (version > VK_MAKE_API_VERSION(0, 2, 0, 193)) {
- LOG_WARNING(Render_Vulkan, "AMD proprietary driver versions newer than 21.9.1 "
- "(windows) / 0.2.0.194 (amdvlk) have "
- "broken VkPhysicalDeviceFloat16Int8FeaturesKHR");
- is_int8_supported = false;
- is_float16_supported = false;
- }
- }
-
+ VkPhysicalDeviceFloat16Int8FeaturesKHR float16_int8;
if (is_int8_supported || is_float16_supported) {
- VkPhysicalDeviceFloat16Int8FeaturesKHR float16_int8{
+ float16_int8 = {
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_FLOAT16_INT8_FEATURES_KHR,
.pNext = nullptr,
.shaderFloat16 = is_float16_supported,
@@ -573,6 +561,7 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR
logical = vk::Device::Create(physical, queue_cis, extensions, first_next, dld);
CollectPhysicalMemoryInfo();
+ CollectTelemetryParameters();
CollectToolingInfo();
if (driver_id == VK_DRIVER_ID_NVIDIA_PROPRIETARY_KHR) {