| 465 | } |
| 466 | |
| 467 | std::string append_human_readable(VkDeviceSize memory) { |
| 468 | return std::to_string(memory) + " (" + to_hex_str(memory) + ") (" + NumToNiceStr(static_cast<size_t>(memory)) + ")"; |
| 469 | } |
| 470 | |
| 471 | void GpuDumpMemoryProps(Printer &p, AppGpu &gpu) { |
| 472 | p.SetHeader(); |
no test coverage detected