pub unsafe extern "C-unwind" fn AUGraphNewNodeSubGraph(
in_graph: AUGraph,
out_node: NonNull<AUNode>,
) -> i32๐Deprecated: no longer supported
Available on crate feature
AUGraph only.Expand description
Create a node that will represent a sub graph
This will create a node that represents a contained or member AUGraph. The AUGraph can be retrieved through the GetNodeInfoSubGraph call. The member AUGraph is owned by the parent graph and will be disposed when either:
- The parent graph is disposed
- The node is removed from the parent AUGraph
Parameter inGraph: the AUGraph object
Parameter outNode: the node that is used to refer to the sub-graph
ยงSafety
in_graphmust be a valid pointer.out_nodemust be a valid pointer.