| 1127 | template <vkb::BindingType bindingType> |
| 1128 | inline void CommandBuffer<bindingType>::set_input_assembly_state(vkb::rendering::InputAssemblyState<bindingType> const &state_info) |
| 1129 | { |
| 1130 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 1131 | { |
| 1132 | pipeline_state.set_input_assembly_state(state_info); |
| 1133 | } |
| 1134 | else |
| 1135 | { |
| 1136 | pipeline_state.set_input_assembly_state(reinterpret_cast<vkb::rendering::InputAssemblyStateCpp const &>(state_info)); |
| 1137 | } |
| 1138 | } |
| 1139 | |
| 1140 | template <vkb::BindingType bindingType> |
| 1141 | inline void CommandBuffer<bindingType>::set_line_width(float line_width) |
| 1142 | { |
no outgoing calls
no test coverage detected