From b78d3ebe722dac1c0093ff8f040f1443ffd02c49 Mon Sep 17 00:00:00 2001 From: Boris Brezillon Date: Fri, 22 Apr 2022 05:23:16 -0700 Subject: [PATCH] vulkan/util: Fill VkPhysicalDeviceIDProperties::deviceNodeMask This field copy was missing in vk_get_physical_device_core_1_1_property_ext(). Fixes: 19ff5019b75 ("vulkan: Add helpers for filling exts for core features and properties.") Reviewed-by: Jason Ekstrand Reviewed-by: Erik Faye-Lund Reviewed-by: Jesse Natalie Part-of: --- src/vulkan/runtime/vk_device.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vulkan/runtime/vk_device.c b/src/vulkan/runtime/vk_device.c index a74c4c3ee48..fd30bf748b9 100644 --- a/src/vulkan/runtime/vk_device.c +++ b/src/vulkan/runtime/vk_device.c @@ -824,6 +824,7 @@ vk_get_physical_device_core_1_1_property_ext(struct VkBaseOutStructure *ext, CORE_PROPERTY(deviceUUID); CORE_PROPERTY(driverUUID); CORE_PROPERTY(deviceLUID); + CORE_PROPERTY(deviceNodeMask); CORE_PROPERTY(deviceLUIDValid); return true; }