Home | History | Annotate | Download | only in webaudio

Lines Matching refs:m_outputs

71     // This copies m_outputs to m_renderingOutputs.  Please see comments for these lists below.
87 // m_outputs contains the AudioNodeOutputs representing current connections which are not disabled.
89 HashSet<AudioNodeOutput*> m_outputs;
93 unsigned numberOfConnections() const { return m_outputs.size(); }
95 // This must be called whenever we modify m_outputs.
98 // m_renderingOutputs is a copy of m_outputs which will never be modified during the graph rendering on the audio thread.
100 // Whenever m_outputs is modified, the context is told so it can later update m_renderingOutputs from m_outputs at a safe time.
101 // Most of the time, m_renderingOutputs is identical to m_outputs.
104 // m_renderingStateNeedUpdating keeps track if m_outputs is modified.