| 32 | #include "NoteOutputQueue.h" |
| 33 | |
| 34 | void NoteOutput::PlayNote(double time, int pitch, int velocity, int voiceIdx, ModulationParameters modulation) |
| 35 | { |
| 36 | ResetStackDepth(); |
| 37 | PlayNoteInternal(time, pitch, velocity, voiceIdx, modulation, false); |
| 38 | } |
| 39 | |
| 40 | void NoteOutput::PlayNoteInternal(double time, int pitch, int velocity, int voiceIdx, ModulationParameters modulation, bool isFromMainThreadAndScheduled) |
| 41 | { |
no outgoing calls
no test coverage detected