Home
last modified time | relevance | path

Searched refs:desc_writes (Results 1 – 4 of 4) sorted by relevance

/external/vulkan-validation-layers/layers/
Dgpu_validation.cpp1341 VkWriteDescriptorSet desc_writes[2] = {}; in GpuAllocateValidationResources() local
1469 desc_writes[1].sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; in GpuAllocateValidationResources()
1470 desc_writes[1].dstBinding = 1; in GpuAllocateValidationResources()
1471 desc_writes[1].descriptorCount = 1; in GpuAllocateValidationResources()
1472 desc_writes[1].descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER; in GpuAllocateValidationResources()
1473 desc_writes[1].pBufferInfo = &input_desc_buffer_info; in GpuAllocateValidationResources()
1474 desc_writes[1].dstSet = desc_sets[0]; in GpuAllocateValidationResources()
1483 desc_writes[0].sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET; in GpuAllocateValidationResources()
1484 desc_writes[0].descriptorCount = 1; in GpuAllocateValidationResources()
1485 desc_writes[0].descriptorType = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER; in GpuAllocateValidationResources()
[all …]
Ddescriptor_sets.cpp1767desc_writes.reserve(create_info.descriptorUpdateEntryCount); // emplaced, so reserved without ini… in DecodedTemplateUpdate()
1779desc_writes.reserve(desc_writes.size() + create_info.pDescriptorUpdateEntries[i].descriptorCount); in DecodedTemplateUpdate()
1781 desc_writes.emplace_back(); in DecodedTemplateUpdate()
1782 auto &write_entry = desc_writes.back(); in DecodedTemplateUpdate()
1847 …eDescriptorSets(static_cast<uint32_t>(decoded_update.desc_writes.size()), decoded_update.desc_writ… in ValidateUpdateDescriptorSetsWithTemplateKHR()
1855 …torset::PerformUpdateDescriptorSets(this, static_cast<uint32_t>(decoded_update.desc_writes.size()), in PerformUpdateDescriptorSetsWithTemplateKHR()
1856 decoded_update.desc_writes.data(), 0, NULL); in PerformUpdateDescriptorSetsWithTemplateKHR()
Ddescriptor_sets.h515 std::vector<VkWriteDescriptorSet> desc_writes; member
Dcore_validation.cpp14025 …alidatePushDescriptorsUpdate(&proxy_ds, static_cast<uint32_t>(decoded_template.desc_writes.size()), in PreCallValidateCmdPushDescriptorSetWithTemplateKHR()
14026 decoded_template.desc_writes.data(), func_name); in PreCallValidateCmdPushDescriptorSetWithTemplateKHR()
14047 … static_cast<uint32_t>(decoded_template.desc_writes.size()), in PreCallRecordCmdPushDescriptorSetWithTemplateKHR()
14048 decoded_template.desc_writes.data()); in PreCallRecordCmdPushDescriptorSetWithTemplateKHR()