MCPcopy Create free account
hub / github.com/VCVRack/Befaco / processBypass

Method processBypass

src/SpringReverb.cpp:96–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94 }
95
96 void processBypass(const ProcessArgs& args) override {
97 float in1 = inputs[IN1_INPUT].getVoltageSum();
98 float in2 = inputs[IN2_INPUT].getVoltageSum();
99
100 float dry = clamp(in1 + in2, -10.0f, 10.0f);
101
102 outputs[WET_OUTPUT].setVoltage(dry);
103 outputs[MIX_OUTPUT].setVoltage(dry);
104 }
105
106 void process(const ProcessArgs& args) override {
107 float in1 = inputs[IN1_INPUT].getVoltageSum();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected