AUGraphNewNodeSubGraph(_:_:)
Creates a node object to represent a subgraph.
Declaration
func AUGraphNewNodeSubGraph(_ inGraph: AUGraph, _ outNode: UnsafeMutablePointer<AUNode>) -> OSStatusParameters
- inGraph:
The AUGraph object that you want to add a subgraph to.
- outNode:
The node that represents the subgraph.
Return Value
A result code.
Discussion
This function creates a node that represents a subgraph. The subgraph can be retrieved with the AUGraphGetNodeInfoSubGraph(_:_:_:) function. The subgraph is owned by the parent graph and will be disposed when the parent graph is disposed or when the node is removed from the parent graph.
See Also
Audio Unit Processing Graph Services Functions
AUGraphAddNode(_:_:_:)AUGraphAddRenderNotify(_:_:_:)AUGraphClearConnections(_:)AUGraphClose(_:)AUGraphConnectNodeInput(_:_:_:_:_:)AUGraphCountNodeInteractions(_:_:_:)AUGraphDisconnectNodeInput(_:_:_:)AUGraphGetCPULoad(_:_:)AUGraphGetIndNode(_:_:_:)AUGraphGetInteractionInfo(_:_:_:)AUGraphGetMaxCPULoad(_:_:)AUGraphGetNodeCount(_:_:)AUGraphGetNodeInfoSubGraph(_:_:_:)AUGraphGetNodeInteractions(_:_:_:_:)AUGraphGetNumberOfInteractions(_:_:)