| 26 | } |
| 27 | |
| 28 | void AudioSummingJunction::handleDirtyAudioSummingJunctions(ContextRenderLock & r) |
| 29 | { |
| 30 | ASSERT(r.context()); |
| 31 | std::shared_ptr<AudioSummingJunction> asj; |
| 32 | while (s_dirtySummingJunctions.try_pop(asj)) |
| 33 | asj->updateRenderingState(r); |
| 34 | } |
| 35 | |
| 36 | AudioSummingJunction::AudioSummingJunction() |
| 37 | : m_renderingStateNeedUpdating(false) |
nothing calls this directly
no test coverage detected