MayaFlux 0.4.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 24 of file Creator.cpp.

25{
26 auto token = get_node_token(ctx.domain.value());
27
28 if (ctx.channel.has_value()) {
29 register_node(node, token, ctx.channel.value());
30 } else if (ctx.channels.has_value()) {
31 for (uint32_t ch : ctx.channels.value()) {
32 register_node(node, token, ch);
33 }
34 } else if (node->get_channel_mask() != 0) {
35 for (uint32_t ch = 0; ch < 32; ++ch) {
36 if (node->get_channel_mask() & (1 << ch)) {
37 register_node(node, token, ch);
38 }
39 }
40 } else {
41 register_node(node, token, 0);
42 }
43}
void register_node(const std::shared_ptr< Nodes::Node > &node, const Nodes::ProcessingToken &token, uint32_t channel)
Definition Graph.cpp:123
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:21
std::optional< std::vector< uint32_t > > channels
Definition Creator.hpp:22
std::optional< Domain > domain
Definition Creator.hpp:20

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

+ Here is the call graph for this function: