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

◆ remove_channel_usage()

void MayaFlux::Nodes::Network::NodeNetwork::remove_channel_usage ( uint32_t  channel_id)

Unregister network from a specific channel.

Parameters
channel_idChannel index

Definition at line 76 of file NodeNetwork.cpp.

77{
78 if (channel_id < 32) {
79 m_channel_mask &= ~(1U << channel_id);
80 }
81}
std::atomic< uint32_t > m_channel_mask
Bitfield of channels this network is registered on.

References m_channel_mask.