Browse Source
[vk, qcom] Removed 500.800.51 compilling parallel restriction
eds-true-adreno-fixes
CamilleLaVey
4 weeks ago
committed by
Caio Oliveira
No known key found for this signature in database
GPG Key ID: AAAE6C7FD4186B0C
1 changed files with
1 additions and
2 deletions
-
src/video_core/vulkan_common/vulkan_device.cpp
|
|
@ -579,8 +579,7 @@ Device::Device(VkInstance instance_, vk::PhysicalDevice physical_, VkSurfaceKHR |
|
|
|
|
|
|
|
|
if (is_qualcomm) { |
|
|
if (is_qualcomm) { |
|
|
const u32 version = (properties.properties.driverVersion << 3) >> 3; |
|
|
const u32 version = (properties.properties.driverVersion << 3) >> 3; |
|
|
if (version < VK_MAKE_API_VERSION(0, 255, 615, 512) || |
|
|
|
|
|
version == VK_MAKE_API_VERSION(0, 512, 800, 51)) { |
|
|
|
|
|
|
|
|
if (version < VK_MAKE_API_VERSION(0, 255, 615, 512)) { |
|
|
has_broken_parallel_compiling = true; |
|
|
has_broken_parallel_compiling = true; |
|
|
} |
|
|
} |
|
|
const size_t sampler_limit = properties.properties.limits.maxSamplerAllocationCount; |
|
|
const size_t sampler_limit = properties.properties.limits.maxSamplerAllocationCount; |
|
|
|