MCPcopy Create free account
hub / github.com/LunarG/VulkanTools / GetLUIDString

Function GetLUIDString

vkconfig_core/vulkan_util.cpp:46–54  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46std::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
56struct VulkanFunctions {
57 VulkanFunctions();

Callers 1

LogMethod · 0.85

Calls 1

formatFunction · 0.70

Tested by

no test coverage detected