pub unsafe extern "C" fn rpsRenderGraphGetOutputParameterResourceInfos(
    hRenderGraph: RpsRenderGraph,
    paramId: RpsParamId,
    arrayOffset: u32,
    numResources: u32,
    pResourceInfos: *mut RpsRuntimeResourceInfo
) -> RpsResult
Expand description

Gets the runtime resource info of an output parameter.

@param hRenderGraph Handle to the render graph to get the resource info from. @param paramId Index of the resource parameter. Must be an output resource parameter of a render graph entry (Declared as ‘out […] texture / buffer’ in RPSL or with (RPS_PARAMETER_FLAG_OUT_BIT | RPS_PARAMETER_FLAG_RESOURCE_BIT) set. @param arrayOffset Offset of the first parameters for array parameters. Must be 0 otherwise. @param numResources Number of resources to get infos for. @param pResourceInfos Pointer to an array of RpsRuntimeResourceInfo in which the numResources resource infos are returned. Must not be NULL if numResources != 0.

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