MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ NodeChainSemantics

Defines how to handle existing nodes when creating a new chain.

Enumerator
REPLACE_TARGET 

Unregister the target and register with the new chain node.

PRESERVE_BOTH 

Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal.

ONLY_CHAIN 

Only keep the new chain node, unregistering the source and target.

Definition at line 45 of file Utils.hpp.

45 : uint8_t {
46 REPLACE_TARGET, ///< Unregister the target and register with the new chain node
47 PRESERVE_BOTH, ///< Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal
48 ONLY_CHAIN ///< Only keep the new chain node, unregistering the source and target
49};
@ PRESERVE_BOTH
Preserve both nodes in the chain, add new chain node to root, i.e doubling the target signal.
Definition Utils.hpp:47
@ REPLACE_TARGET
Unregister the target and register with the new chain node.
Definition Utils.hpp:46
@ ONLY_CHAIN
Only keep the new chain node, unregistering the source and target.
Definition Utils.hpp:48