| 1053 | inline 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 | |
| 1065 | template <vkb::BindingType bindingType> |
| 1066 | inline void CommandBuffer<bindingType>::resolve_image(ImageType const &src_img, ImageType const &dst_img, std::vector<ImageResolveType> const ®ions) |
| 1067 | { |
nothing calls this directly
no test coverage detected