Home
last modified time | relevance | path

Searched refs:descriptorSetLayouts (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.cpp140 for (auto &descriptorSetLayout : descriptorSetLayouts) { in destroy()
636 descriptorSetLayouts.push_back(descriptorSetLayout); in createDescriptorSetLayout()
650 pipelineLayoutCreateInfo.setLayoutCount = descriptorSetLayouts.size(); in createPipelineLayout()
651 pipelineLayoutCreateInfo.pSetLayouts = descriptorSetLayouts.data(); in createPipelineLayout()
716 descriptorSets.resize(descriptorSetLayouts.size()); in allocateDescriptorSets()
721 descriptorSetAllocateInfo.descriptorSetCount = descriptorSetLayouts.size(); in allocateDescriptorSets()
722 descriptorSetAllocateInfo.pSetLayouts = descriptorSetLayouts.data(); in allocateDescriptorSets()
H A DVulkanRuntime.h185 std::vector<VkDescriptorSetLayout> descriptorSetLayouts; variable