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

◆ OutputMode

enum class MayaFlux::Nodes::NodeNetwork::OutputMode : uint8_t
strong

Defines how the network's computational results are exposed.

Enumerator
NONE 

Pure internal state, no external output.

AUDIO_SINK 

Aggregated audio samples sent to output.

GRAPHICS_BIND 

State available for visualization (read-only)

CUSTOM 

User-defined output handling via callbacks.

Definition at line 97 of file NodeNetwork.hpp.

97 : uint8_t {
98 NONE, ///< Pure internal state, no external output
99 AUDIO_SINK, ///< Aggregated audio samples sent to output
100 GRAPHICS_BIND, ///< State available for visualization (read-only)
101 CUSTOM ///< User-defined output handling via callbacks
102 };
@ CUSTOM
User-defined arbitrary topology.
@ GRAPHICS_BIND
State available for visualization (read-only)
@ NONE
Pure internal state, no external output.
@ AUDIO_SINK
Aggregated audio samples sent to output.