| 5024 | |
| 5025 | template<typename T, typename AllocatorT, size_t N> |
| 5026 | void VmaSmallVector<T, AllocatorT, N>::clear(bool freeMemory) |
| 5027 | { |
| 5028 | m_DynamicArray.clear(); |
| 5029 | if (freeMemory) |
| 5030 | { |
| 5031 | m_DynamicArray.shrink_to_fit(); |
| 5032 | } |
| 5033 | m_Count = 0; |
| 5034 | } |
| 5035 | |
| 5036 | template<typename T, typename AllocatorT, size_t N> |
| 5037 | void VmaSmallVector<T, AllocatorT, N>::insert(size_t index, const T& src) |