| 763 | |
| 764 | template <vkb::BindingType bindingType> |
| 765 | inline void RenderContext<bindingType>::submit(std::shared_ptr<vkb::core::CommandBuffer<bindingType>> command_buffer) |
| 766 | { |
| 767 | std::vector<std::shared_ptr<vkb::core::CommandBuffer<bindingType>>> command_buffers(1, command_buffer); |
| 768 | submit(command_buffers); |
| 769 | } |
| 770 | |
| 771 | template <vkb::BindingType bindingType> |
| 772 | inline void RenderContext<bindingType>::submit(const std::vector<std::shared_ptr<vkb::core::CommandBuffer<bindingType>>> &command_buffers) |