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

◆ register_node() [1/2]

MAYAFLUX_API void MayaFlux::register_node ( const std::shared_ptr< Nodes::Node > &  node,
const CreationContext ctx 
)

Definition at line 21 of file Creator.cpp.

22{
23 auto token = get_node_token(ctx.domain.value());
24
25 if (ctx.channel.has_value()) {
26 register_node(node, token, ctx.channel.value());
27 } else if (ctx.channels.has_value()) {
28 for (uint32_t ch : ctx.channels.value()) {
29 register_node(node, token, ch);
30 }
31 } else if (node->get_channel_mask() != 0) {
32 for (uint32_t ch = 0; ch < 32; ++ch) {
33 if (node->get_channel_mask() & (1 << ch)) {
34 register_node(node, token, ch);
35 }
36 }
37 } else {
38 register_node(node, token, 0);
39 }
40}
void register_node(const std::shared_ptr< Nodes::Node > &node, const Nodes::ProcessingToken &token, uint32_t channel)
Definition Graph.cpp:124
MAYAFLUX_API Nodes::ProcessingToken get_node_token(Domain domain)
Extracts node processing token from domain.
Definition Domain.hpp:174
std::optional< uint32_t > channel
Definition Creator.hpp:10
std::optional< std::vector< uint32_t > > channels
Definition Creator.hpp:11
std::optional< Domain > domain
Definition Creator.hpp:9

References MayaFlux::CreationContext::channel, MayaFlux::CreationContext::channels, MayaFlux::CreationContext::domain, get_node_token(), and register_node().

+ Here is the call graph for this function: