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

◆ output_mode_to_string()

std::string MayaFlux::Nodes::Network::NodeNetwork::output_mode_to_string ( OutputMode  mode)
staticprivate

Definition at line 149 of file NodeNetwork.cpp.

150{
151 switch (mode) {
152 case OutputMode::NONE:
153 return "NONE";
155 return "AUDIO_SINK";
157 return "GRAPHICS_BIND";
159 return "CUSTOM";
160 default:
161 return "UNKNOWN";
162 }
163}
@ CUSTOM
User-defined output handling via callbacks.
@ GRAPHICS_BIND
State available for visualization (read-only)
@ NONE
Pure internal state, no external output.
@ AUDIO_SINK
Aggregated audio samples sent to output.

References AUDIO_SINK, CUSTOM, GRAPHICS_BIND, and NONE.

Referenced by get_metadata().

+ Here is the caller graph for this function: