HomeSort by relevance Sort by last modified time
    Searched refs:m_renderingOutputs (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioSummingJunction.h 50 // This copies m_outputs to m_renderingOutputs. Please see comments for these lists below.
55 unsigned numberOfRenderingConnections() const { return m_renderingOutputs.size(); }
56 AudioNodeOutput* renderingOutput(unsigned i) { return m_renderingOutputs[i]; }
57 const AudioNodeOutput* renderingOutput(unsigned i) const { return m_renderingOutputs[i]; }
67 // The rendering code should never use this directly, but instead uses m_renderingOutputs.
74 // m_renderingOutputs is a copy of m_outputs which will never be modified during the graph rendering on the audio thread.
76 // Whenever m_outputs is modified, the context is told so it can later update m_renderingOutputs from m_outputs at a safe time.
77 // Most of the time, m_renderingOutputs is identical to m_outputs.
78 Vector<AudioNodeOutput*> m_renderingOutputs;
AudioSummingJunction.cpp 65 // Copy from m_outputs to m_renderingOutputs.
66 m_renderingOutputs.resize(m_outputs.size());
70 m_renderingOutputs[j] = output;

Completed in 3592 milliseconds