Copy of internal VmaAlgorithmToStr.
| 72 | |
| 73 | // Copy of internal VmaAlgorithmToStr. |
| 74 | static const char* AlgorithmToStr(uint32_t algorithm) |
| 75 | { |
| 76 | switch(algorithm) |
| 77 | { |
| 78 | case VMA_POOL_CREATE_LINEAR_ALGORITHM_BIT: |
| 79 | return "Linear"; |
| 80 | case 0: |
| 81 | return "TLSF"; |
| 82 | default: |
| 83 | assert(0); |
| 84 | return ""; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | static const char* VirtualAlgorithmToStr(uint32_t algorithm) |
| 89 | { |
no outgoing calls
no test coverage detected