| 74 | } |
| 75 | |
| 76 | void NoteVibrato::PlayNote(double time, int pitch, int velocity, int voiceIdx, ModulationParameters modulation) |
| 77 | { |
| 78 | if (mEnabled) |
| 79 | { |
| 80 | mModulation.GetPitchBend(voiceIdx)->AppendTo(modulation.pitchBend); |
| 81 | modulation.pitchBend = mModulation.GetPitchBend(voiceIdx); |
| 82 | } |
| 83 | |
| 84 | PlayNoteOutput(time, pitch, velocity, voiceIdx, modulation); |
| 85 | } |
| 86 | |
| 87 | void NoteVibrato::FloatSliderUpdated(FloatSlider* slider, float oldVal, double time) |
| 88 | { |
nothing calls this directly
no test coverage detected