Skip to content

Commit 796d193

Browse files
vkconfig: Fix UUID display in log, following the RFC9562 standard #2423
Change-Id: I7657a8edf8d56a79cfc3515e9ba9b4943c9caa8c
1 parent 21554b0 commit 796d193

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

vkconfig_core/vulkan_util.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ std::string GetUUIDString(const uint8_t deviceUUID[VK_UUID_SIZE]) {
3535

3636
for (std::size_t i = 0, n = VK_UUID_SIZE; i < n; ++i) {
3737
result += format("%02X", deviceUUID[i]);
38+
if (i == 3 || i == 5 || i == 7) {
39+
result += "-";
40+
}
3841
}
3942

4043
return result;

vkconfig_gui/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
- Fix "discard" layer control tooltip #2595
2323
- Fix "Validation with API Dump log" configuration not loaded
2424
- Fix high CPU usage on idle when no layers configuration is active #2603
25+
- Fix UUID display in log, following the RFC9562 standard
2526

2627
## Vulkan Configurator 3.4.2 - Febuary 2026
2728
[Vulkan SDK 1.4.341.0](https://github.com/LunarG/VulkanTools/tree/vulkan-sdk-1.4.341)

0 commit comments

Comments
 (0)