| 4464 | #endif // VMA_STATS_STRING_ENABLED |
| 4465 | |
| 4466 | void VmaFreeString(const VkAllocationCallbacks* allocs, char* str) |
| 4467 | { |
| 4468 | if (str != VMA_NULL) |
| 4469 | { |
| 4470 | const size_t len = strlen(str); |
| 4471 | vma_delete_array(allocs, str, len + 1); |
| 4472 | } |
| 4473 | } |
| 4474 | |
| 4475 | template<typename CmpLess, typename VectorT> |
| 4476 | size_t VmaVectorInsertSorted(VectorT& vector, const typename VectorT::value_type& value) |
no test coverage detected