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

◆ get_channel_mask()

const std::atomic< uint32_t > & MayaFlux::Nodes::Node::get_channel_mask ( ) const
inline

Retrieves the current bitmask of active channels using this node.

Returns
Bitmask where each bit represents an active channel

This method returns the current bitmask that tracks which channels are actively using this node. Each bit in the mask corresponds to a specific channel ID, allowing the node to manage its state based on channel usage.

Definition at line 296 of file Node.hpp.

296{ return m_active_channels_mask; }
std::atomic< uint32_t > m_active_channels_mask
Bitmask tracking which channels are currently using this node.
Definition Node.hpp:483