| 1406 | } |
| 1407 | |
| 1408 | void CtrlrPanel::sendMidi (const MidiBuffer &messages, double millisecondCounterToStartAt) |
| 1409 | { |
| 1410 | if (isMidiOutPaused()) |
| 1411 | return; |
| 1412 | |
| 1413 | if (outputDevicePtr) |
| 1414 | { |
| 1415 | outputDevicePtr->sendMidiBuffer (messages, globalMidiDelay + millisecondCounterToStartAt); |
| 1416 | } |
| 1417 | |
| 1418 | queueMessagesForHostOutput (messages); |
| 1419 | } |
| 1420 | |
| 1421 | void CtrlrPanel::sendMidi (const MidiMessage &message, double millisecondCounterToStartAt) |
| 1422 | { |
nothing calls this directly
no test coverage detected