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

Method process

src/Muxlicer.cpp:70–76  ·  view source on GitHub ↗

Advances the state by `deltaTime`. Returns whether the pulse is in the HIGH state. */

Source from the content-addressed store, hash-verified

68
69 /** Advances the state by `deltaTime`. Returns whether the pulse is in the HIGH state. */
70 bool process(float deltaTime) {
71 if (remaining > 0.f) {
72 remaining -= deltaTime;
73 return true;
74 }
75 return false;
76 }
77
78 bool getGate(int gateMode) {
79

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected