From: Samuel Pitoiset Date: Wed, 15 Apr 2020 16:08:10 +0000 (+0200) Subject: radv: do not abort with unknown/unimplemented descriptor types X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35b396392880871b8cc06172dafff238e67c44cc;p=mesa.git radv: do not abort with unknown/unimplemented descriptor types To workaround a crash with Wolfeinstein Younglood because the games creates one descriptor with VK_DESCRIPTOR_TYPE_ACCELERATION_STRUCTURE_NV... I reported the problem to Machine Games, but still no answer, so let's remove the unreachable calls (which are technically not unreachable for buggy apps) to help gamers. Note that AMDVLK and AMDGPU-PRO don't crash because they ignore unsupported descriptor types. Cc: Signed-off-by: Samuel Pitoiset Reviewed-by: Bas Nieuwenhuizen Part-of: --- diff --git a/src/amd/vulkan/radv_descriptor_set.c b/src/amd/vulkan/radv_descriptor_set.c index 33947ea3726..ea3d733ba61 100644 --- a/src/amd/vulkan/radv_descriptor_set.c +++ b/src/amd/vulkan/radv_descriptor_set.c @@ -150,7 +150,7 @@ VkResult radv_CreateDescriptorSetLayout( for (uint32_t j = 0; j < pCreateInfo->bindingCount; j++) { const VkDescriptorSetLayoutBinding *binding = bindings + j; uint32_t b = binding->binding; - uint32_t alignment; + uint32_t alignment = 0; unsigned binding_buffer_count = 0; uint32_t descriptor_count = binding->descriptorCount; bool has_ycbcr_sampler = false; @@ -214,7 +214,6 @@ VkResult radv_CreateDescriptorSetLayout( descriptor_count = 1; break; default: - unreachable("unknown descriptor type\n"); break; } @@ -363,7 +362,6 @@ void radv_GetDescriptorSetLayoutSupport(VkDevice device, descriptor_count = 1; break; default: - unreachable("unknown descriptor type\n"); break; } @@ -673,7 +671,6 @@ VkResult radv_CreateDescriptorPool( bo_size += pCreateInfo->pPoolSizes[i].descriptorCount; break; default: - unreachable("unknown descriptor type\n"); break; } } @@ -1050,7 +1047,6 @@ void radv_update_descriptor_sets( } break; default: - unreachable("unimplemented descriptor type"); break; } ptr += binding_layout->size / 4; @@ -1303,7 +1299,6 @@ void radv_update_descriptor_set_with_template(struct radv_device *device, memcpy(pDst, templ->entry[i].immutable_samplers + 4 * j, 16); break; default: - unreachable("unimplemented descriptor type"); break; } pSrc += templ->entry[i].src_stride;