diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 5b4209c72..51f53bc39 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -421,6 +421,11 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR | |||
| 421 | "Blacklisting RADV for VK_EXT_extended_dynamic state, likely due to a bug in yuzu"); | 421 | "Blacklisting RADV for VK_EXT_extended_dynamic state, likely due to a bug in yuzu"); |
| 422 | ext_extended_dynamic_state = false; | 422 | ext_extended_dynamic_state = false; |
| 423 | } | 423 | } |
| 424 | if (is_float16_supported && driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) { | ||
| 425 | // Intel's compiler crashes when using fp16 on Astral Chain, disable it for the time being. | ||
| 426 | LOG_WARNING(Render_Vulkan, "Blacklisting Intel proprietary from float16 math"); | ||
| 427 | is_float16_supported = false; | ||
| 428 | } | ||
| 424 | 429 | ||
| 425 | graphics_queue = logical.GetQueue(graphics_family); | 430 | graphics_queue = logical.GetQueue(graphics_family); |
| 426 | present_queue = logical.GetQueue(present_family); | 431 | present_queue = logical.GetQueue(present_family); |