| 22 | } |
| 23 | |
| 24 | FunctionNode::FunctionNode(AudioContext & ac, int channels) |
| 25 | : AudioScheduledSourceNode(ac, *desc()) |
| 26 | { |
| 27 | addOutput(std::unique_ptr<AudioNodeOutput>(new AudioNodeOutput(this, channels))); |
| 28 | initialize(); |
| 29 | } |
| 30 | |
| 31 | FunctionNode::~FunctionNode() |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected