| 128 | } |
| 129 | |
| 130 | void onRandomize() override { |
| 131 | range = random::u32() % 3; |
| 132 | output_mode = (tides2::OutputMode)(random::u32() % 4); |
| 133 | ramp_mode = (tides2::RampMode)(random::u32() % 3); |
| 134 | } |
| 135 | |
| 136 | void onSampleRateChange() override { |
| 137 | ramp_extractor.Init(APP->engine->getSampleRate(), 40.f / APP->engine->getSampleRate()); |
nothing calls this directly
no outgoing calls
no test coverage detected