Searched refs:sorted_bindings (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/broadcom/vulkan/ |
D | v3dv_descriptor_set.c | 569 VkDescriptorSetLayoutBinding *sorted_bindings = in create_sorted_bindings() local 574 if (!sorted_bindings) in create_sorted_bindings() 577 memcpy(sorted_bindings, bindings, in create_sorted_bindings() 580 qsort(sorted_bindings, count, sizeof(VkDescriptorSetLayoutBinding), in create_sorted_bindings() 583 return sorted_bindings; in create_sorted_bindings()
|
/external/mesa3d/src/freedreno/vulkan/ |
D | tu_descriptor_set.c | 64 VkDescriptorSetLayoutBinding *sorted_bindings = in create_sorted_bindings() local 66 if (!sorted_bindings) in create_sorted_bindings() 69 memcpy(sorted_bindings, bindings, in create_sorted_bindings() 72 qsort(sorted_bindings, count, sizeof(VkDescriptorSetLayoutBinding), in create_sorted_bindings() 75 return sorted_bindings; in create_sorted_bindings()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_descriptor_set.c | 60 …VkDescriptorSetLayoutBinding *sorted_bindings = malloc(MAX2(count * sizeof(VkDescriptorSetLayoutBi… in create_sorted_bindings() local 61 if (!sorted_bindings) in create_sorted_bindings() 65 memcpy(sorted_bindings, bindings, count * sizeof(VkDescriptorSetLayoutBinding)); in create_sorted_bindings() 66 qsort(sorted_bindings, count, sizeof(VkDescriptorSetLayoutBinding), binding_compare); in create_sorted_bindings() 69 return sorted_bindings; in create_sorted_bindings()
|
/external/vulkan-validation-layers/layers/ |
D | descriptor_sets.cpp | 74 std::set<ExtendedBinding, BindingNumCmp> sorted_bindings; in DescriptorSetLayoutDef() local 82 sorted_bindings.insert(ExtendedBinding(p_create_info->pBindings + i, flags)); in DescriptorSetLayoutDef() 88 binding_count_ = static_cast<uint32_t>(sorted_bindings.size()); in DescriptorSetLayoutDef() 92 for (auto input_binding : sorted_bindings) { in DescriptorSetLayoutDef()
|