Function Pointer
PFN_vkVoidFunction
Placeholder function pointer type returned by queries
The definition of PFN_vkVoidFunction is:
typedef void (VKAPI_PTR *PFN_vkVoidFunction)(void);
pub type PFN_vkVoidFunction = Option<
unsafe extern "system" fn(
) -> std::ffi::c_void
>;
This type is returned from command function pointer queries, and must be cast to an actual command function pointer before use.
Parent
VK_VERSION_1_0Type
Function Pointer