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

◆ OutputMode

enum class MayaFlux::Nodes::Network::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.

AUDIO_COMPUTE 

processed each cycle but not sent to output

GRAPHICS_BIND 

State available for visualization (read-only)

CUSTOM 

User-defined output handling via callbacks.

Definition at line 26 of file NodeNetwork.hpp.

26 : uint8_t {
27 NONE, ///< Pure internal state, no external output
28 AUDIO_SINK, ///< Aggregated audio samples sent to output
29 AUDIO_COMPUTE, ///< processed each cycle but not sent to output
30 GRAPHICS_BIND, ///< State available for visualization (read-only)
31 CUSTOM ///< User-defined output handling via callbacks
32};
@ GRAPHICS_BIND
State available for visualization (read-only)
@ AUDIO_COMPUTE
processed each cycle but not sent to output
@ AUDIO_SINK
Aggregated audio samples sent to output.