| 1140 | template <vkb::BindingType bindingType> |
| 1141 | inline void CommandBuffer<bindingType>::set_line_width(float line_width) |
| 1142 | { |
| 1143 | this->get_resource().setLineWidth(line_width); |
| 1144 | } |
| 1145 | |
| 1146 | template <vkb::BindingType bindingType> |
| 1147 | inline void CommandBuffer<bindingType>::set_multisample_state(vkb::rendering::MultisampleState<bindingType> const &state_info) |
| 1148 | { |
| 1149 | if constexpr (bindingType == vkb::BindingType::Cpp) |
| 1150 | { |
| 1151 | pipeline_state.set_multisample_state(state_info); |
| 1152 | } |
| 1153 | else |
| 1154 | { |
| 1155 | pipeline_state.set_multisample_state(reinterpret_cast<vkb::rendering::MultisampleStateCpp const &>(state_info)); |
no outgoing calls
no test coverage detected