Structures
VkPhysicalDeviceLayeredApiPropertiesKHR
Structure describing a single layered implementation underneath the Vulkan physical device
The VkPhysicalDeviceLayeredApiPropertiesKHR structure is defined as:
typedef struct VkPhysicalDeviceLayeredApiPropertiesKHR {
VkStructureType sType;
void* pNext;
uint32_t vendorID;
uint32_t deviceID;
VkPhysicalDeviceLayeredApiKHR layeredAPI;
char deviceName[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
} VkPhysicalDeviceLayeredApiPropertiesKHR;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.vendorIDis a unique identifier for the vendor of the layered implementation.deviceIDis a unique identifier for the layered implementation among devices available from the vendor.layeredAPIis a VkPhysicalDeviceLayeredApiKHR specifying the API implemented by the layered implementation.deviceNameis an array ofVK_MAX_PHYSICAL_DEVICE_NAME_SIZEcharcontaining a null-terminated UTF-8 string which is the name of the device.
If layeredAPI is VK_PHYSICAL_DEVICE_LAYERED_API_VULKAN_KHR,
additional Vulkan-specific information can be queried by including the
VkPhysicalDeviceLayeredApiVulkanPropertiesKHR structure in the
pNext chain.
Otherwise if such a structure is included in the pNext chain, it is
ignored.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceLayeredApiPropertiesKHR-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_LAYERED_API_PROPERTIES_KHR
VUID-VkPhysicalDeviceLayeredApiPropertiesKHR-pNext-pNext
pNext must be NULL or a pointer to a valid instance of VkPhysicalDeviceLayeredApiVulkanPropertiesKHR
VUID-VkPhysicalDeviceLayeredApiPropertiesKHR-sType-unique
The sType value of each structure in the pNext chain must be unique