Type Alias fsr_sys::DestroyBackendContextFunc
source · pub type DestroyBackendContextFunc = Option<unsafe extern "C" fn(backendInterface: *mut Interface) -> ErrorCode>;
Expand description
Destroy the backend context and dereference the device.
This function is called when the
@param [in] backendInterface A pointer to the backend interface.
@retval FFX_OK The operation completed successfully. @retval Anything else The operation failed.
@ingroup FSR2
Aliased Type§
enum DestroyBackendContextFunc {
None,
Some(unsafe extern "C" fn(_: *mut Interface) -> i32),
}