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 52 // This copies m_outputs to m_renderingOutputs. Please see comments for these lists below.
57 unsigned numberOfRenderingConnections() const { return m_renderingOutputs.size(); }
58 AudioNodeOutput* renderingOutput(unsigned i) { return m_renderingOutputs[i]; }
69 // The rendering code should never use this directly, but instead uses m_renderingOutputs.
75 // m_renderingOutputs is a copy of m_outputs which will never be modified during the graph rendering on the audio thread.
77 // Whenever m_outputs is modified, the context is told so it can later update m_renderingOutputs from m_outputs at a safe time.
78 // Most of the time, m_renderingOutputs is identical to m_outputs.
82 Vector<AudioNodeOutput*> m_renderingOutputs;
AudioSummingJunction.cpp 74 // Copy from m_outputs to m_renderingOutputs.
75 m_renderingOutputs.resize(m_outputs.size());
79 m_renderingOutputs[j] = output;

Completed in 48 milliseconds