| 624 | } |
| 625 | |
| 626 | void AudioContext::dispatchEvents() |
| 627 | { |
| 628 | std::function<void()> event_fn; |
| 629 | while (m_internal->enqueuedEvents.try_dequeue(event_fn)) |
| 630 | { |
| 631 | if (event_fn) event_fn(); |
| 632 | } |
| 633 | } |
| 634 | |
| 635 | void AudioContext::setDeviceNode(std::shared_ptr<AudioNode> device) |
| 636 | { |
nothing calls this directly
no outgoing calls
no test coverage detected