Type Definition rps_sys::PFN_rpsRenderGraphBuild

source ·
pub type PFN_rpsRenderGraphBuild = Option<unsafe extern "C" fn(hBuilder: RpsRenderGraphBuilder, pArgs: *const RpsConstant, numArgs: u32) -> RpsResult>;
Expand description

Signature of functions for render graph building.

@param hBuilder Handle to the render graph builder to use. @param pArgs Pointer to an array of RpsConstant with numArgs constant arguments to use for building. Must not be NULL if numArgs != 0. @param numArgs Number of constant arguments to use for building.

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