diff options
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index bf063c047..9754abcf8 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp | |||
| @@ -491,6 +491,10 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR | |||
| 491 | "Blacklisting RADV for VK_EXT_extended_dynamic state, likely due to a bug in yuzu"); | 491 | "Blacklisting RADV for VK_EXT_extended_dynamic state, likely due to a bug in yuzu"); |
| 492 | ext_extended_dynamic_state = false; | 492 | ext_extended_dynamic_state = false; |
| 493 | } | 493 | } |
| 494 | if (ext_vertex_input_dynamic_state && driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) { | ||
| 495 | LOG_WARNING(Render_Vulkan, "Blacklisting Intel for VK_EXT_vertex_input_dynamic_state"); | ||
| 496 | ext_vertex_input_dynamic_state = false; | ||
| 497 | } | ||
| 494 | if (is_float16_supported && driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) { | 498 | if (is_float16_supported && driver_id == VK_DRIVER_ID_INTEL_PROPRIETARY_WINDOWS) { |
| 495 | // Intel's compiler crashes when using fp16 on Astral Chain, disable it for the time being. | 499 | // Intel's compiler crashes when using fp16 on Astral Chain, disable it for the time being. |
| 496 | // LOG_WARNING(Render_Vulkan, "Blacklisting Intel proprietary from float16 math"); | 500 | // LOG_WARNING(Render_Vulkan, "Blacklisting Intel proprietary from float16 math"); |