From 67cda9672b97daa9a3eb6d74639e5d87dd6ef463 Mon Sep 17 00:00:00 2001 From: ziga-lunarg Date: Sat, 2 Dec 2023 19:59:08 +0100 Subject: vulkaninfo: Fix including promoted structures --- vulkaninfo/vulkaninfo.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'vulkaninfo/vulkaninfo.cpp') 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); } } -- cgit v1.2.3