Structures
VkPhysicalDeviceDrmPropertiesEXT
Structure containing DRM information of a physical device
The VkPhysicalDeviceDrmPropertiesEXT structure is defined as:
typedef struct VkPhysicalDeviceDrmPropertiesEXT {
VkStructureType sType;
void* pNext;
VkBool32 hasPrimary;
VkBool32 hasRender;
int64_t primaryMajor;
int64_t primaryMinor;
int64_t renderMajor;
int64_t renderMinor;
} VkPhysicalDeviceDrmPropertiesEXT;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.hasPrimaryis a boolean indicating whether the physical device has a DRM primary node.hasRenderis a boolean indicating whether the physical device has a DRM render node.primaryMajoris the DRM primary node major number, if any.primaryMinoris the DRM primary node minor number, if any.renderMajoris the DRM render node major number, if any.renderMinoris the DRM render node minor number, if any.
If the VkPhysicalDeviceDrmPropertiesEXT structure is included in the pNext chain of the
VkPhysicalDeviceProperties2 structure passed to
vkGetPhysicalDeviceProperties2, it is filled in with each
corresponding implementation-dependent property.
These are properties of the DRM information of a physical device.
Valid Usage (Implicit)
VUID-VkPhysicalDeviceDrmPropertiesEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT