Function Prototype
vkRegisterDeviceEventEXT
Signal a fence when a device event occurs
To create a fence that will be signaled when an event occurs on a device, call:
VkResult vkRegisterDeviceEventEXT(
VkDevice device,
const VkDeviceEventInfoEXT* pDeviceEventInfo,
const VkAllocationCallbacks* pAllocator,
VkFence* pFence);
pub fn register_device_event_ext(
device: vk::Device,
p_device_event_info: *const vk::DeviceEventInfoEXT,
p_allocator: *const vk::AllocationCallbacks,
p_fence: *mut vk::Fence,
) -> vk::Result;
deviceis a logical device on which the event may occur.pDeviceEventInfois a pointer to a VkDeviceEventInfoEXT structure describing the event of interest to the application.pAllocatorcontrols host memory allocation as described in the Memory Allocation chapter.pFenceis a pointer to a handle in which the resulting fence object is returned.
Valid Usage (Implicit)
VUID-vkRegisterDeviceEventEXT-device-parameter
device must be a valid VkDevice handle
VUID-vkRegisterDeviceEventEXT-pDeviceEventInfo-parameter
pDeviceEventInfo must be a valid pointer to a valid VkDeviceEventInfoEXT structure
VUID-vkRegisterDeviceEventEXT-pAllocator-parameter
If pAllocator is not NULL, pAllocator must be a valid pointer to a valid VkAllocationCallbacks structure
VUID-vkRegisterDeviceEventEXT-pFence-parameter
pFence must be a valid pointer to a VkFence handle
Parent
VK_EXT_display_controlType
Function Prototype
Return Values
VK_SUCCESS
VK_ERROR_OUT_OF_HOST_MEMORY
VK_ERROR_UNKNOWN
VK_ERROR_VALIDATION_FAILED