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 22 of file Creator.cpp.

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

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

+ Here is the call graph for this function: