| 1600 | #endif // #if VMA_VULKAN_VERSION > 1002000 |
| 1601 | |
| 1602 | static void AddFlagToStr(std::wstring& inout, const wchar_t* flagStr) |
| 1603 | { |
| 1604 | if(!inout.empty()) |
| 1605 | inout += L", "; |
| 1606 | inout += flagStr; |
| 1607 | } |
| 1608 | |
| 1609 | static std::wstring HeapFlagsToStr(VkMemoryHeapFlags flags) |
| 1610 | { |
no test coverage detected