| 103 | lab::AudioSettingDescriptor s_cSettings[] = {{"normalize", "NRML", SettingType::Bool}, |
| 104 | {"impulseResponse", "IMPL", SettingType::Bus}, nullptr}; |
| 105 | AudioNodeDescriptor * ConvolverNode::desc() |
| 106 | { |
| 107 | static AudioNodeDescriptor d {nullptr, s_cSettings}; |
| 108 | return &d; |
| 109 | } |
| 110 | |
| 111 | ConvolverNode::ConvolverNode(AudioContext& ac) |
| 112 | : AudioScheduledSourceNode(ac, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected