| 90 | |
| 91 | template <vkb::BindingType bindingType> |
| 92 | inline vkb::core::CommandPool<bindingType>::CommandPool(vkb::core::Device<bindingType> &device, |
| 93 | uint32_t queue_family_index, |
| 94 | vkb::rendering::RenderFrame<bindingType> *render_frame, |
| 95 | size_t thread_index, |
| 96 | vkb::CommandBufferResetMode reset_mode) : |
| 97 | CommandPoolBase(reinterpret_cast<vkb::core::DeviceCpp &>(device), |
| 98 | queue_family_index, |
| 99 | reinterpret_cast<vkb::rendering::RenderFrameCpp *>(render_frame), |
| 100 | thread_index, |
| 101 | reset_mode) |
| 102 | {} |
| 103 | |
| 104 | template <vkb::BindingType bindingType> |
| 105 | inline typename vkb::core::Device<bindingType> &CommandPool<bindingType>::get_device() |
nothing calls this directly
no outgoing calls
no test coverage detected