| 16 | { |
| 17 | |
| 18 | AudioNodeDescriptor * FunctionNode::desc() |
| 19 | { |
| 20 | static AudioNodeDescriptor d {nullptr, nullptr}; |
| 21 | return &d; |
| 22 | } |
| 23 | |
| 24 | FunctionNode::FunctionNode(AudioContext & ac, int channels) |
| 25 | : AudioScheduledSourceNode(ac, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected