| 86 | } |
| 87 | |
| 88 | void MidiOutputModule::BuildControllerList() |
| 89 | { |
| 90 | mControllerList->Clear(); |
| 91 | const std::vector<std::string>& devices = mDevice.GetPortList(false); |
| 92 | for (int i = 0; i < devices.size(); ++i) |
| 93 | mControllerList->AddLabel(devices[i].c_str(), i); |
| 94 | } |
| 95 | |
| 96 | void MidiOutputModule::PlayNote(double time, int pitch, int velocity, int voiceIdx, ModulationParameters modulation) |
| 97 | { |
nothing calls this directly
no test coverage detected