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

Method removeAutomaticPullNode

src/core/AudioContext.cpp:577–586  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575}
576
577void AudioContext::removeAutomaticPullNode(std::shared_ptr<AudioNode> node)
578{
579 std::lock_guard<std::mutex> lock(m_updateMutex);
580 auto it = m_automaticPullNodes.find(node);
581 if (it != m_automaticPullNodes.end())
582 {
583 m_automaticPullNodes.erase(it);
584 m_automaticPullNodesNeedUpdating = true;
585 }
586}
587
588void AudioContext::updateAutomaticPullNodes()
589{

Callers 4

playMethod · 0.80
playMethod · 0.80
playMethod · 0.80
playMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected