| 1276 | else |
| 1277 | { |
| 1278 | flush_impl(reinterpret_cast<vkb::core::DeviceCpp &>(this->get_device()), pipeline_bind_point); |
| 1279 | } |
| 1280 | } |
| 1281 | |
| 1282 | template <vkb::BindingType bindingType> |
| 1283 | inline void CommandBuffer<bindingType>::flush_impl(vkb::core::DeviceCpp &device, vk::PipelineBindPoint pipeline_bind_point) |
| 1284 | { |
| 1285 | flush_pipeline_state_impl(device, pipeline_bind_point); |
| 1286 | flush_push_constants(); |
| 1287 | flush_descriptor_state_impl(pipeline_bind_point); |
| 1288 | } |
| 1289 | |
| 1290 | template <vkb::BindingType bindingType> |
| 1291 | inline void CommandBuffer<bindingType>::flush_descriptor_state_impl(vk::PipelineBindPoint pipeline_bind_point) |
no test coverage detected