venus: add missing sTypes for vk_set_physical_device_properties_struct

The contents were previously copied with vk_copy_struct_guts(),
now that we use vk_set_physical_device_properties_struct, the sType
is needed.

Fixes: ("3c152a6e5dd venus: Use common physical device properties")

Signed-off-by: Juston Li <justonli@google.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29314>
This commit is contained in:
Juston Li
2024-05-21 15:44:39 -07:00
committed by Marge Bot
parent b99c48b011
commit 4b3e286d33

View File

@@ -1349,6 +1349,7 @@ virtgpu_init_renderer_info(struct virtgpu *gpu)
struct vn_renderer_info *info = &gpu->base.info;
info->drm.props = (VkPhysicalDeviceDrmPropertiesEXT){
.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT,
.hasPrimary = gpu->has_primary,
.hasRender = true,
.primaryMajor = gpu->primary_major,
@@ -1363,6 +1364,8 @@ virtgpu_init_renderer_info(struct virtgpu *gpu)
if (gpu->bustype == DRM_BUS_PCI) {
info->pci.has_bus_info = true;
info->pci.props = (VkPhysicalDevicePCIBusInfoPropertiesEXT){
.sType =
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PCI_BUS_INFO_PROPERTIES_EXT,
.pciDomain = gpu->pci_bus_info.domain,
.pciBus = gpu->pci_bus_info.bus,
.pciDevice = gpu->pci_bus_info.dev,