vk/device-select-layer: fix .sType of VkPhysicalDeviceGroupProperties
The validation layers complained: > Validation Error: [ VUID-VkPhysicalDeviceGroupProperties-sType-sType ] Object 0: VK_NULL_HANDLE, type = VK_OBJECT_TYPE_DEVICE; | MessageID = 0xc9edee8b | vkEnumeratePhysicalDeviceGroups: parameter pPhysicalDeviceGroupProperties[0].sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES The Vulkan spec states: sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_GROUP_PROPERTIES (https://www.khronos.org/registry/vulkan/specs/1.3-extensions/html/vkspec.html#VUID-VkPhysicalDeviceGroupProperties-sType-sType ) Signed-off-by:Eric Engestrom <eric@igalia.com> Reviewed-by:
Georg Lehmann <dadschoorse@gmail.com> Fixes: c196ffac ("vk-device-select: add device group support") Part-of: <mesa/mesa!18037>