| 59 | } |
| 60 | |
| 61 | VltComputePipelineInstance* VltComputePipeline::createInstance( |
| 62 | const VltComputePipelineStateInfo& state) |
| 63 | { |
| 64 | VkPipeline newPipelineHandle = this->createPipeline(state); |
| 65 | |
| 66 | m_pipeMgr->m_numComputePipelines += 1; |
| 67 | return &m_pipelines.emplace_back(state, newPipelineHandle); |
| 68 | } |
| 69 | |
| 70 | VltComputePipelineInstance* VltComputePipeline::findInstance( |
| 71 | const VltComputePipelineStateInfo& state) |
no test coverage detected