| 118 | |
| 119 | template <vkb::BindingType bindingType, typename BuilderType, typename CreateInfoType> |
| 120 | inline BuilderBase<bindingType, BuilderType, CreateInfoType>::BuilderBase(const CreateInfoType &create_info_) : |
| 121 | create_info{reinterpret_cast<CreateInfoTypeCpp const &>(create_info_)} |
| 122 | { |
| 123 | alloc_create_info.usage = VMA_MEMORY_USAGE_AUTO; |
| 124 | }; |
| 125 | |
| 126 | template <vkb::BindingType bindingType, typename BuilderType, typename CreateInfoType> |
| 127 | inline VmaAllocationCreateInfo const &BuilderBase<bindingType, BuilderType, CreateInfoType>::get_allocation_create_info() const |
nothing calls this directly
no outgoing calls
no test coverage detected