| 26 | } |
| 27 | |
| 28 | NoiseNode::NoiseNode(AudioContext & ac) |
| 29 | : AudioScheduledSourceNode(ac, *desc()) |
| 30 | { |
| 31 | _type = setting("type"); |
| 32 | addOutput(std::unique_ptr<AudioNodeOutput>(new AudioNodeOutput(this, 1))); |
| 33 | initialize(); |
| 34 | } |
| 35 | |
| 36 | NoiseNode::~NoiseNode() |
| 37 | { |
nothing calls this directly
no outgoing calls
no test coverage detected