| 4250 | #endif // VMA_STATS_STRING_ENABLED |
| 4251 | |
| 4252 | static void VmaFreeString(const VkAllocationCallbacks* allocs, char* str) |
| 4253 | { |
| 4254 | if (str != VMA_NULL) |
| 4255 | { |
| 4256 | const size_t len = strlen(str); |
| 4257 | vma_delete_array(allocs, str, len + 1); |
| 4258 | } |
| 4259 | } |
| 4260 | |
| 4261 | template<typename CmpLess, typename VectorT> |
| 4262 | size_t VmaVectorInsertSorted(VectorT& vector, const typename VectorT::value_type& value) |
no test coverage detected