Method
construct_processor
(
&self,
_: &Self::Configuration,
cx: ConstructProcessorContext,
)
Source from the content-addressed store, hash-verified
| 78 | } |
| 79 | |
| 80 | fn construct_processor( |
| 81 | &self, |
| 82 | _: &Self::Configuration, |
| 83 | cx: ConstructProcessorContext, |
| 84 | ) -> Result<impl AudioNodeProcessor, NodeError> { |
| 85 | let state = cx.custom_state::<CustomState>().unwrap().clone(); |
| 86 | |
| 87 | Ok(DummyClapPluginProcessor { state }) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | impl AudioNodeProcessor for DummyClapPluginProcessor {} |
Tested by
no test coverage detected