Lines Matching refs:pipelines
21 * \brief Defines class for handling resources ( programs, pipelines, files, etc. )
125 // At the end of the day we only need to export objects used in pipelines.
136 for (auto it = begin(m_pipelineInput.pipelines); it != end(m_pipelineInput.pipelines); ++it)
304 // Step 1: collect information about all pipelines in each test, group by size
305 for (const auto& pipeline : m_pipelineInput.pipelines)
690 // subprocess: load graphics pipelines from OUR m_pipelineCache cache
707 // main process: store pipelines in JSON format. Pipelines will be sent later for m_pipelineCache creation ( and sent through file to another process )
712 auto it = std::find_if(begin(m_pipelineInput.pipelines), end(m_pipelineInput.pipelines), vksc_server::PipelineIdentifierEqual(pipelineIDs[i]));
714 if (it == end(m_pipelineInput.pipelines))
723 m_pipelineInput.pipelines.push_back(vksc_server::VulkanJsonPipelineDescription(
782 // subprocess: load compute pipelines from OUR pipeline cache
799 // main process: store pipelines in JSON format. Pipelines will be sent later for m_pipelineCache creation ( and sent through file to another process )
804 auto it = std::find_if(begin(m_pipelineInput.pipelines), end(m_pipelineInput.pipelines), vksc_server::PipelineIdentifierEqual(pipelineIDs[i]));
806 if (it == end(m_pipelineInput.pipelines))
815 m_pipelineInput.pipelines.push_back(vksc_server::VulkanJsonPipelineDescription(
839 auto pit = std::find_if(begin(m_pipelineInput.pipelines), end(m_pipelineInput.pipelines), vksc_server::PipelineIdentifierEqual(it->second));
840 if (pit == end(m_pipelineInput.pipelines))