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

◆ output_mode_to_string()

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

Definition at line 129 of file NodeNetwork.cpp.

130{
131 switch (mode) {
132 case OutputMode::NONE:
133 return "NONE";
135 return "AUDIO_SINK";
137 return "GRAPHICS_BIND";
139 return "CUSTOM";
140 default:
141 return "UNKNOWN";
142 }
143}
@ 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: