diff options
| author | ziga-lunarg <ziga@lunarg.com> | 2023-12-02 19:59:08 +0100 |
|---|---|---|
| committer | ziga-lunarg <87310389+ziga-lunarg@users.noreply.github.com> | 2023-12-02 21:12:56 +0100 |
| commit | 67cda9672b97daa9a3eb6d74639e5d87dd6ef463 (patch) | |
| tree | 1d7d4bf31d53e15a00a0cdb09a1f3fd529eba709 /vulkaninfo/vulkaninfo.cpp | |
| parent | 8718f7f80506b4377d1a37608b532c7c3c54c685 (diff) | |
| download | usermoji-67cda9672b97daa9a3eb6d74639e5d87dd6ef463.tar.xz | |
vulkaninfo: Fix including promoted structures
Diffstat (limited to 'vulkaninfo/vulkaninfo.cpp')
| -rw-r--r-- | vulkaninfo/vulkaninfo.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vulkaninfo/vulkaninfo.cpp b/vulkaninfo/vulkaninfo.cpp index dadbf1b5..6f8ca787 100644 --- a/vulkaninfo/vulkaninfo.cpp +++ b/vulkaninfo/vulkaninfo.cpp @@ -887,14 +887,14 @@ void DumpSummaryGPU(Printer &p, AppGpu &gpu) { p.PrintKeyString("deviceName", props.deviceName); if (gpu.found_driver_props) { - DumpVkDriverId(p, "driverID", gpu.driver_props.driverID); - p.PrintKeyString("driverName", gpu.driver_props.driverName); - p.PrintKeyString("driverInfo", gpu.driver_props.driverInfo); - p.PrintKeyValue("conformanceVersion", gpu.driver_props.conformanceVersion); + DumpVkDriverId(p, "driverID", gpu.driverID); + p.PrintKeyString("driverName", gpu.driverName); + p.PrintKeyString("driverInfo", gpu.driverInfo); + p.PrintKeyValue("conformanceVersion", gpu.conformanceVersion); } if (gpu.found_device_id_props) { - p.PrintKeyValue("deviceUUID", gpu.device_id_props.deviceUUID); - p.PrintKeyValue("driverUUID", gpu.device_id_props.driverUUID); + p.PrintKeyValue("deviceUUID", gpu.deviceUUID); + p.PrintKeyValue("driverUUID", gpu.driverUUID); } } |
