Structures
VkDisplayPlaneProperties2KHR
Structure describing an available display plane
The VkDisplayPlaneProperties2KHR structure is defined as:
typedef struct VkDisplayPlaneProperties2KHR {
VkStructureType sType;
void* pNext;
VkDisplayPlanePropertiesKHR displayPlaneProperties;
} VkDisplayPlaneProperties2KHR;
pub struct DisplayPlaneProperties2KHR {
s_type: vk::StructureType,
p_next: *mut c_void,
display_plane_properties: vk::DisplayPlanePropertiesKHR,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.displayPlanePropertiesis a VkDisplayPlanePropertiesKHR structure.
Valid Usage (Implicit)
VUID-VkDisplayPlaneProperties2KHR-sType-sType
sType must be VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR
VUID-VkDisplayPlaneProperties2KHR-pNext-pNext
pNext must be NULL
Type
Structures