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

Method dispatchEvents

src/core/AudioContext.cpp:626–633  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

624}
625
626void 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
635void AudioContext::setDeviceNode(std::shared_ptr<AudioNode> device)
636{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected