| 223 | } |
| 224 | |
| 225 | void vulkan_indirect_command_pipeline::complete(const compute_device& dev) { |
| 226 | auto pipeline_entry = get_vulkan_pipeline_entry(dev); |
| 227 | if (!pipeline_entry) { |
| 228 | throw runtime_error("no pipeline entry for device " + dev.name); |
| 229 | } |
| 230 | complete_pipeline(dev, *pipeline_entry); |
| 231 | } |
| 232 | |
| 233 | void vulkan_indirect_command_pipeline::complete() { |
| 234 | for (auto& pipeline : pipelines) { |
nothing calls this directly
no outgoing calls
no test coverage detected