| 2410 | } |
| 2411 | |
| 2412 | static void PrintAllocatorStats() |
| 2413 | { |
| 2414 | #if VMA_STATS_STRING_ENABLED |
| 2415 | char* statsString = nullptr; |
| 2416 | vmaBuildStatsString(g_hAllocator, &statsString, true); |
| 2417 | printf("%s\n", statsString); |
| 2418 | vmaFreeStatsString(g_hAllocator, statsString); |
| 2419 | #endif |
| 2420 | } |
| 2421 | |
| 2422 | static bool IsWindowMinimizedOrZeroSized() |
| 2423 | { |
nothing calls this directly
no test coverage detected