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

Method set_depth_stencil_state

framework/core/command_buffer.h:1129–1139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1127template <vkb::BindingType bindingType>
1128inline 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
1140template <vkb::BindingType bindingType>
1141inline void CommandBuffer<bindingType>::set_line_width(float line_width)
1142{

Callers 6

draw_implMethod · 0.45
drawMethod · 0.45
record_drawMethod · 0.45
drawMethod · 0.45
drawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected