| 115 | } |
| 116 | |
| 117 | void NullDeviceNode::render(AudioBus * src, AudioBus * dst, int frames, const SamplingInfo & info) |
| 118 | { |
| 119 | ProfileScope profile(graphTime); |
| 120 | totalTime.zero(); |
| 121 | |
| 122 | pull_graph(m_context, input(0).get(), src, dst, frames, info, nullptr); |
| 123 | profile.finalize(); // ensure profile is not prematurely destructed |
| 124 | } |
| 125 | |
| 126 | const SamplingInfo & NullDeviceNode::getSamplingInfo() const |
| 127 | { |