MCPcopy Create free account
hub / github.com/BespokeSynth/BespokeSynth / FeedbackModule

Method FeedbackModule

Source/FeedbackModule.cpp:31–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29#include "ModularSynth.h"
30
31FeedbackModule::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
44void FeedbackModule::CreateUIControls()
45{

Callers

nothing calls this directly

Calls 3

SetPositionMethod · 0.45
SetEnabledMethod · 0.45
SetNameMethod · 0.45

Tested by

no test coverage detected