Structures
VkDisplayPlanePropertiesKHR
Structure describing display plane properties
The VkDisplayPlanePropertiesKHR structure is defined as:
typedef struct VkDisplayPlanePropertiesKHR {
VkDisplayKHR currentDisplay;
uint32_t currentStackIndex;
} VkDisplayPlanePropertiesKHR;
pub struct DisplayPlanePropertiesKHR {
current_display: vk::DisplayKHR, // Display the plane is currently associated with. Will be VK_NULL_HANDLE if the plane is not in use.
current_stack_index: u32, // Current z-order of the plane.
}
currentDisplayis the handle of the display the plane is currently associated with. If the plane is not currently attached to any displays, this will be VK_NULL_HANDLE.currentStackIndexis the current z-order of the plane. This will be between 0 and the value returned byvkGetPhysicalDeviceDisplayPlanePropertiesKHRinpPropertyCount.
Parent
VK_KHR_displayType
Structures