| 44 | } |
| 45 | |
| 46 | std::string GetLUIDString(const uint8_t deviceLUID[VK_LUID_SIZE]) { |
| 47 | std::string result; |
| 48 | |
| 49 | for (std::size_t i = 0, n = VK_LUID_SIZE; i < n; ++i) { |
| 50 | result += format("%02X", deviceLUID[i]); |
| 51 | } |
| 52 | |
| 53 | return result; |
| 54 | } |
| 55 | |
| 56 | struct VulkanFunctions { |
| 57 | VulkanFunctions(); |