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

Method get_level

framework/core/command_buffer.h:833–843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

831template <vkb::BindingType bindingType>
832inline void CommandBuffer<bindingType>::execute_commands(vkb::core::CommandBuffer<bindingType> &secondary_command_buffer)
833{
834 this->get_resource().executeCommands(secondary_command_buffer.get_resource());
835}
836
837template <vkb::BindingType bindingType>
838inline void CommandBuffer<bindingType>::execute_commands(std::vector<std::shared_ptr<vkb::core::CommandBuffer<bindingType>>> &secondary_command_buffers)
839{
840 if constexpr (bindingType == vkb::BindingType::Cpp)
841 {
842 execute_commands_impl(secondary_command_buffers);
843 }
844 else
845 {
846 execute_commands_impl(reinterpret_cast<std::vector<std::shared_ptr<vkb::core::CommandBufferCpp>> &>(secondary_command_buffers));

Callers 2

draw_shadow_passMethod · 0.80
draw_main_passMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected