Type Definition rps_sys::PFN_rpsRenderGraphPhaseRun

source ·
pub type PFN_rpsRenderGraphPhaseRun = Option<unsafe extern "C" fn(hRenderGraph: RpsRenderGraph, pUpdateInfo: *const RpsRenderGraphUpdateInfo, phase: RpsRenderGraphPhase) -> RpsResult>;
Expand description

Signature of functions for executing a render graph phase.

@param hRenderGraph Handle to the render graph to execute the phase for. @param pUpdateInfo Pointer to update parameters. @param phase Handle to the render graph phase object.

@returns Result code of the operation. See RpsResult for more info.