Home
last modified time | relevance | path

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

/external/deqp/external/vulkancts/vkscserver/
DvksCacheBuilder.cpp132 VkPipelineLayoutCreateInfo plCI{}; in exportFilesForExternalCompiler() local
133 readJSON_VkPipelineLayoutCreateInfo(jsonReader, pipelineLayout.second, plCI); in exportFilesForExternalCompiler()
134 allPipelineLayouts.insert({ pipelineLayout.first, plCI }); in exportFilesForExternalCompiler()
818 VkPipelineLayoutCreateInfo plCI{}; in buildPipelineCache() local
819 readJSON_VkPipelineLayoutCreateInfo(jsonReader, pipelineLayout.second, plCI); in buildPipelineCache()
822 for (deUint32 i = 0; i < plCI.setLayoutCount; ++i) in buildPipelineCache()
824 auto jt = falseToRealDescriptorSetLayouts.find(plCI.pSetLayouts[i]); in buildPipelineCache()
829 plCI.pSetLayouts = newSetLayouts.data(); in buildPipelineCache()
832 VK_CHECK(createPipelineLayoutFunc(*pcDevice, &plCI, DE_NULL, &realPipelineLayout)); in buildPipelineCache()
DvksJson.hpp106 vk::VkPipelineLayoutCreateInfo& plCI);
DvksJson.cpp766 VkPipelineLayoutCreateInfo& plCI) in readJSON_VkPipelineLayoutCreateInfo() argument
773 vk_json_parser::parse_VkPipelineLayoutCreateInfo("", jsonRoot, plCI); in readJSON_VkPipelineLayoutCreateInfo()
/external/deqp/external/vulkancts/framework/vulkan/
DvkResourceInterface.cpp183 VkPipelineLayoutCreateInfo plCI; in removeRedundantObjects() local
184 deMemset(&plCI, 0, sizeof(plCI)); in removeRedundantObjects()
185 readJSON_VkPipelineLayoutCreateInfo(jsonReader, it->second, plCI); in removeRedundantObjects()
186 for (deUint32 i = 0; i < plCI.setLayoutCount; ++i) in removeRedundantObjects()
187 descriptorSetLayoutsInPipeline.insert(plCI.pSetLayouts[i]); in removeRedundantObjects()