Browse Source
[vk, qcom] Disabling VK_KHR_push_descriptor for qcom
pull/3168/head
CamilleLaVey
4 weeks ago
committed by
Caio Oliveira
No known key found for this signature in database
GPG Key ID: 362DA3DC1901E080
1 changed files with
7 additions and
0 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
|
@ -558,6 +558,13 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR |
|
|
|
if (version < VK_MAKE_API_VERSION(0, 255, 615, 512)) { |
|
|
|
has_broken_parallel_compiling = true; |
|
|
|
} |
|
|
|
|
|
|
|
if (extensions.push_descriptor) { |
|
|
|
LOG_WARNING(Render_Vulkan, |
|
|
|
"Qualcomm driver mishandles push descriptors; disabling " |
|
|
|
"VK_KHR_push_descriptor to avoid incomplete descriptor writes"); |
|
|
|
RemoveExtension(extensions.push_descriptor, VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (extensions.sampler_filter_minmax && is_amd) { |
|
|
|
|