We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df76480 + ebefe58 commit a88bc52Copy full SHA for a88bc52
include/vk_mem_alloc.h
@@ -3377,22 +3377,6 @@ static inline bool VmaStrIsEmpty(const char* pStr)
3377
return pStr == VMA_NULL || *pStr == '\0';
3378
}
3379
3380
-#if VMA_STATS_STRING_ENABLED
3381
-static const char* VmaAlgorithmToStr(uint32_t algorithm)
3382
-{
3383
- switch (algorithm)
3384
- {
3385
- case VMA_POOL_CREATE_LINEAR_ALGORITHM_BIT:
3386
- return "Linear";
3387
- case 0:
3388
- return "TLSF";
3389
- default:
3390
- VMA_ASSERT(0);
3391
- return "";
3392
- }
3393
-}
3394
-#endif // VMA_STATS_STRING_ENABLED
3395
-
3396
#ifndef VMA_SORT
3397
template<typename Iterator, typename Compare>
3398
Iterator VmaQuickSortPartition(Iterator beg, Iterator end, Compare cmp)
0 commit comments