MCPcopy Create free account
hub / github.com/VCVRack/Rack / setStart

Method setStart

include/dsp/midi.hpp:198–211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196 }
197
198 void setStart(bool start) {
199 if (this->start == start)
200 return;
201 this->start = start;
202 if (start) {
203 // Start
204 midi::Message m;
205 m.setSize(1);
206 m.setStatus(0xf);
207 m.setChannel(0xa);
208 m.setFrame(frame);
209 onMessage(m);
210 }
211 }
212
213 void setContinue(bool cont) {
214 if (this->cont == cont)

Callers 1

processMethod · 0.80

Calls 4

setStatusMethod · 0.80
setSizeMethod · 0.45
setChannelMethod · 0.45
setFrameMethod · 0.45

Tested by

no test coverage detected