| 610 | } |
| 611 | |
| 612 | void AudioContext::processAutomaticPullNodes(ContextRenderLock & r, int framesToProcess) |
| 613 | { |
| 614 | for (unsigned i = 0; i < m_renderingAutomaticPullNodes.size(); ++i) |
| 615 | { |
| 616 | m_renderingAutomaticPullNodes[i]->processIfNecessary(r, framesToProcess); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | void AudioContext::enqueueEvent(std::function<void()> & fn) |
| 621 | { |
no test coverage detected