Skip to main content

PFN_vkEnumerateDeviceLayerProperties

Type Alias PFN_vkEnumerateDeviceLayerProperties 

Source
pub type PFN_vkEnumerateDeviceLayerProperties = Option<unsafe extern "system" fn(physical_device: PhysicalDevice, p_property_count: *mut u32, p_properties: *mut LayerProperties) -> Result>;
Expand description

vkEnumerateDeviceLayerProperties Provided by VK_BASE_VERSION_1_0.

§Success Codes

  • VK_SUCCESS
  • VK_INCOMPLETE

§Error Codes

  • VK_ERROR_OUT_OF_HOST_MEMORY
  • VK_ERROR_OUT_OF_DEVICE_MEMORY
  • VK_ERROR_UNKNOWN
  • VK_ERROR_VALIDATION_FAILED

Aliased Type§

pub enum PFN_vkEnumerateDeviceLayerProperties {
    None,
    Some(unsafe extern "system" fn(PhysicalDevice, *mut u32, *mut LayerProperties) -> Result),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "system" fn(PhysicalDevice, *mut u32, *mut LayerProperties) -> Result)

Some value of type T.