| 1159 | template <vkb::BindingType bindingType> |
| 1160 | inline void CommandBuffer<bindingType>::set_rasterization_state(vkb::rendering::RasterizationState<bindingType> const &state_info) |
| 1161 | { |
| 1162 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 1163 | { |
| 1164 | pipeline_state.set_rasterization_state(state_info); |
| 1165 | } |
| 1166 | else |
| 1167 | { |
| 1168 | pipeline_state.set_rasterization_state(reinterpret_cast<vkb::rendering::RasterizationStateCpp const &>(state_info)); |
| 1169 | } |
| 1170 | } |
| 1171 | |
| 1172 | template <vkb::BindingType bindingType> |
| 1173 | inline void CommandBuffer<bindingType>::set_scissor(uint32_t first_scissor, std::vector<Rect2DType> const &scissors) |
| 1174 | { |
no outgoing calls
no test coverage detected