Lines Matching refs:pipelines
1617 std::vector<PipelineSp> pipelines(VERIFYMAXVALUES_OBJECT_COUNT);
1618 createGraphicsPipelines(vkd, device, vertexShaderModule.get(), fragmentShaderModule.get(), renderPasses[0]->get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines), end(pipelines));
1622 std::fill(begin(pipelines) + VERIFYMAXVALUES_OBJECT_COUNT / 2, end(pipelines), PipelineSp());
1623 createGraphicsPipelines(vkd, device, vertexShaderModule.get(), fragmentShaderModule.get(), renderPasses[0]->get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines) + VERIFYMAXVALUES_OBJECT_COUNT / 2, end(pipelines));
1624 std::fill(begin(pipelines), end(pipelines), PipelineSp());
1625 createGraphicsPipelines(vkd, device, vertexShaderModule.get(), fragmentShaderModule.get(), renderPasses[0]->get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines), end(pipelines));
1636 std::vector<PipelineSp> pipelines(VERIFYMAXVALUES_OBJECT_COUNT);
1637 createComputePipelines(vkd, device, shaderModule.get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines), end(pipelines));
1641 std::fill(begin(pipelines) + VERIFYMAXVALUES_OBJECT_COUNT / 2, end(pipelines), PipelineSp());
1642 createComputePipelines(vkd, device, shaderModule.get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines) + VERIFYMAXVALUES_OBJECT_COUNT / 2, end(pipelines));
1643 std::fill(begin(pipelines), end(pipelines), PipelineSp());
1644 createComputePipelines(vkd, device, shaderModule.get(), pipelineLayouts[0]->get(), pipelineDefaultSize, m_context.getResourceInterface(), begin(pipelines), end(pipelines));
1923 std::vector<Move<VkPipeline>> pipelines;
1925 pipelines.emplace_back(createGraphicsPipeline(vk, device, DE_NULL, &graphicsPipelineCreateInfo));
1933 std::vector<VkPipeline> pipelines (pipelineCount, VkPipeline(DE_NULL));
1936 // if recyclePipelineMemory is set then we are able to create the same pipelines again
1941 VkResult result = createGraphicsPipelinesFunc(device, pipelineCache, 1u, &graphicsPipelineCreateInfo, DE_NULL, &pipelines[i]);
1946 if (pipelines[j].getInternal() != DE_NULL)
1947 destroyPipelineFunc(device, pipelines[j], DE_NULL);
1954 destroyPipelineFunc(device, pipelines[i], DE_NULL);
1955 pipelines[i] = VkPipeline(DE_NULL);