MCPcopy Create free account
hub / github.com/LabSound/LabSound / schedulingStateName

Function schedulingStateName

src/core/AudioNode.cpp:88–102  ·  view source on GitHub ↗

@TODO when the ls2 merge is done, move this to its own source file

Source from the content-addressed store, hash-verified

86/// @TODO when the ls2 merge is done, move this to its own source file
87///
88const char * schedulingStateName(SchedulingState s)
89{
90 switch (s)
91 {
92 case SchedulingState::UNSCHEDULED: return "UNSCHEDULED";
93 case SchedulingState::SCHEDULED: return "SCHEDULED";
94 case SchedulingState::FADE_IN: return "FADE_IN";
95 case SchedulingState::PLAYING: return "PLAYING";
96 case SchedulingState::STOPPING: return "STOPPING";
97 case SchedulingState::RESETTING: return "RESETTING";
98 case SchedulingState::FINISHING: return "FINISHING";
99 case SchedulingState::FINISHED: return "FINISHED";
100 }
101 return "Unknown";
102}
103
104
105const int start_envelope = 64;

Callers 1

debugTraverseMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected