| 29 | #include "ModularSynth.h" |
| 30 | |
| 31 | FeedbackModule::FeedbackModule() |
| 32 | : IAudioProcessor(gBufferSize) |
| 33 | , mFeedbackVizBuffer(VIZ_BUFFER_SECONDS * gSampleRate) |
| 34 | { |
| 35 | AddChild(&mDelay); |
| 36 | mDelay.SetPosition(4, 32); |
| 37 | mDelay.SetEnabled(true); |
| 38 | mDelay.SetName("delay"); |
| 39 | |
| 40 | for (int i = 0; i < ChannelBuffer::kMaxNumChannels; ++i) |
| 41 | mGainScale[i] = 1; |
| 42 | } |
| 43 | |
| 44 | void FeedbackModule::CreateUIControls() |
| 45 | { |
nothing calls this directly
no test coverage detected