Structures
VkDeviceEventInfoEXT
Describe a device event to create
The VkDeviceEventInfoEXT structure is defined as:
typedef struct VkDeviceEventInfoEXT {
VkStructureType sType;
const void* pNext;
VkDeviceEventTypeEXT deviceEvent;
} VkDeviceEventInfoEXT;
pub struct DeviceEventInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
device_event: vk::DeviceEventTypeEXT,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.deviceEventis a VkDeviceEventTypeEXT value specifying when the fence will be signaled.
Valid Usage (Implicit)
VUID-VkDeviceEventInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_DEVICE_EVENT_INFO_EXT
VUID-VkDeviceEventInfoEXT-pNext-pNext
pNext must be NULL
VUID-VkDeviceEventInfoEXT-deviceEvent-parameter
deviceEvent must be a valid VkDeviceEventTypeEXT value
Parent
VK_EXT_display_controlType
Structures