| 626 | } |
| 627 | |
| 628 | void 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 | |
| 639 | bool AudioNode::inputsAreSilent(ContextRenderLock & r) |
| 640 | { |