| 4419 | |
| 4420 | template<typename T> |
| 4421 | void vma_delete(const VkAllocationCallbacks* pAllocationCallbacks, T* ptr) |
| 4422 | { |
| 4423 | ptr->~T(); |
| 4424 | VmaFree(pAllocationCallbacks, ptr); |
| 4425 | } |
| 4426 | |
| 4427 | template<typename T> |
| 4428 | void vma_delete_array(const VkAllocationCallbacks* pAllocationCallbacks, T* ptr, size_t count) |
no test coverage detected