MCPcopy Create free account
hub / github.com/LabSound/LabSound / pullInputs

Method pullInputs

src/core/AudioNode.cpp:628–637  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

626}
627
628void AudioNode::pullInputs(ContextRenderLock & r, int bufferSize)
629{
630 ASSERT(r.context());
631
632 // Process all of the AudioNodes connected to our inputs.
633 for (auto & in : m_inputs)
634 {
635 in->pull(r, 0, bufferSize);
636 }
637}
638
639bool AudioNode::inputsAreSilent(ContextRenderLock & r)
640{

Callers

nothing calls this directly

Calls 2

contextMethod · 0.45
pullMethod · 0.45

Tested by

no test coverage detected