| 531 | template <vkb::BindingType bindingType> |
| 532 | inline void CommandBuffer<bindingType>::bind_input(ImageViewType const &image_view, uint32_t set, uint32_t binding, uint32_t array_element) |
| 533 | { |
| 534 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 535 | { |
| 536 | resource_binding_state.bind_input(image_view, set, binding, array_element); |
| 537 | } |
| 538 | else |
| 539 | { |
| 540 | resource_binding_state.bind_input(reinterpret_cast<vkb::core::HPPImageView const &>(image_view), set, binding, array_element); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | template <vkb::BindingType bindingType> |
| 545 | inline void CommandBuffer<bindingType>::bind_lighting(vkb::rendering::LightingState<bindingType> &lighting_state, uint32_t set, uint32_t binding) |
| 546 | { |
no outgoing calls
no test coverage detected