We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21554b0 commit 796d193Copy full SHA for 796d193
2 files changed
vkconfig_core/vulkan_util.cpp
@@ -35,6 +35,9 @@ std::string GetUUIDString(const uint8_t deviceUUID[VK_UUID_SIZE]) {
35
36
for (std::size_t i = 0, n = VK_UUID_SIZE; i < n; ++i) {
37
result += format("%02X", deviceUUID[i]);
38
+ if (i == 3 || i == 5 || i == 7) {
39
+ result += "-";
40
+ }
41
}
42
43
return result;
vkconfig_gui/CHANGELOG.md
@@ -22,6 +22,7 @@
22
- Fix "discard" layer control tooltip #2595
23
- Fix "Validation with API Dump log" configuration not loaded
24
- Fix high CPU usage on idle when no layers configuration is active #2603
25
+- Fix UUID display in log, following the RFC9562 standard
26
27
## Vulkan Configurator 3.4.2 - Febuary 2026
28
[Vulkan SDK 1.4.341.0](https://github.com/LunarG/VulkanTools/tree/vulkan-sdk-1.4.341)
0 commit comments