MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Samples / set_input_assembly_state

Method set_input_assembly_state

framework/core/command_buffer.h:1142–1152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1140template <vkb::BindingType bindingType>
1141inline void CommandBuffer<bindingType>::set_line_width(float line_width)
1142{
1143 this->get_resource().setLineWidth(line_width);
1144}
1145
1146template <vkb::BindingType bindingType>
1147inline 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));

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected