Skip to main content

PFN_vkGetEventStatus

Type Alias PFN_vkGetEventStatus 

Source
pub type PFN_vkGetEventStatus = Option<unsafe extern "system" fn(device: Device, event: Event) -> Result>;
Expand description

vkGetEventStatus Provided by VK_COMPUTE_VERSION_1_0.

§Success Codes

  • VK_EVENT_SET
  • VK_EVENT_RESET

§Error Codes

  • VK_ERROR_OUT_OF_HOST_MEMORY
  • VK_ERROR_OUT_OF_DEVICE_MEMORY
  • VK_ERROR_DEVICE_LOST
  • VK_ERROR_UNKNOWN
  • VK_ERROR_VALIDATION_FAILED

Aliased Type§

pub enum PFN_vkGetEventStatus {
    None,
    Some(unsafe extern "system" fn(Device, Event) -> Result),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(Device, Event) -> Result)

Some value of type T.