Class VkPhysicalDevicePCIBusInfoPropertiesEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDevicePCIBusInfoPropertiesEXT>
org.lwjgl.vulkan.VkPhysicalDevicePCIBusInfoPropertiesEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPhysicalDevicePCIBusInfoPropertiesEXT extends org.lwjgl.system.Struct<VkPhysicalDevicePCIBusInfoPropertiesEXT> implements org.lwjgl.system.NativeResource
Structure containing PCI bus information of a physical device.
Description

If the VkPhysicalDevicePCIBusInfoPropertiesEXT structure is included in the pNext chain of the VkPhysicalDeviceProperties2 structure passed to GetPhysicalDeviceProperties2, it is filled in with each corresponding implementation-dependent property.

These are properties of the PCI bus information of a physical device.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDevicePCIBusInfoPropertiesEXT {
     VkStructureType sType();
     void * pNext();
     uint32_t pciDomain();
     uint32_t pciBus();
     uint32_t pciDevice();
     uint32_t pciFunction();
 }