| 557 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 558 | { |
| 559 | pipeline_state.set_pipeline_layout(pipeline_layout); |
| 560 | } |
| 561 | else |
| 562 | { |
| 563 | pipeline_state.set_pipeline_layout(reinterpret_cast<vkb::core::HPPPipelineLayout &>(pipeline_layout)); |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | template <vkb::BindingType bindingType> |
| 568 | inline void CommandBuffer<bindingType>::bind_vertex_buffers(uint32_t first_binding, |
| 569 | std::vector<std::reference_wrapper<const vkb::core::Buffer<bindingType>>> const &buffers, |
no test coverage detected