1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:38:10 +00:00

Piano: Move to LibDSP's Classic synthesizer

Almost all synthesizer code in Piano is removed in favor of the LibDSP
reimplementation.

This causes some issues that mainly have to do with the way Piano
currently handles talking to LibDSP. Additionally, the sampler is gone
for now and will be reintroduced with future work.
This commit is contained in:
kleines Filmröllchen 2021-09-28 18:01:39 +02:00 committed by Andreas Kling
parent 3ca059da2d
commit b14a64b3c8
14 changed files with 128 additions and 464 deletions

View file

@ -117,8 +117,7 @@ void MainWidget::special_key_action(int key_code)
set_octave_and_ensure_note_change(Up);
break;
case Key_C:
m_track_manager.current_track().set_wave(Up);
m_knobs_widget->update_knobs();
m_knobs_widget->cycle_waveform();
break;
}
}