ZL_Compressor_buildStaticGraph

Function ZL_Compressor_buildStaticGraph 

Source
pub unsafe extern "C" fn ZL_Compressor_buildStaticGraph(
    compressor: *mut ZL_Compressor,
    headNode: ZL_NodeID,
    successorGraphs: *const ZL_GraphID,
    numSuccessorGraphs: usize,
    params: *const ZL_StaticGraphParameters,
) -> ZL_Result_ZL_GraphID
Expand description

Build a new graph out of pre-existing components. The new graph passes its data to @p headNode, and then each output of @p headNode is set to the corresponding @p successorGraph.

@param headNode Pass the input data to this node @param successorGraphs Pass the outputs of @p headNode to these graphs @param numSuccessorGraphs Number of successor graphs @param params Optionally extra parameters for the static graph, or NULL.

@returns Thew new graph ID, or an error.