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

Method reset_impl

framework/core/command_buffer.h:1055–1064  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1053inline void CommandBuffer<bindingType>::reset_query_pool(QueryPoolType const &query_pool, uint32_t first_query, uint32_t query_count)
1054{
1055 if constexpr (bindingType == vkb::BindingType::Cpp)
1056 {
1057 this->get_resource().resetQueryPool(query_pool.get_handle(), first_query, query_count);
1058 }
1059 else
1060 {
1061 this->get_resource().resetQueryPool(static_cast<vk::QueryPool>(query_pool.get_handle()), first_query, query_count);
1062 }
1063}
1064
1065template <vkb::BindingType bindingType>
1066inline void CommandBuffer<bindingType>::resolve_image(ImageType const &src_img, ImageType const &dst_img, std::vector<ImageResolveType> const &regions)
1067{

Callers

nothing calls this directly

Calls 2

get_reset_modeMethod · 0.45
resetMethod · 0.45

Tested by

no test coverage detected