MCPcopy Create free account
hub / github.com/BillyDM/Firewheel / construct_processor

Method construct_processor

crates/firewheel-core/src/node.rs:469–477  ·  view source on GitHub ↗
(
        &self,
        cx: ConstructProcessorContext,
    )

Source from the content-addressed store, hash-verified

467 }
468
469 fn construct_processor(
470 &self,
471 cx: ConstructProcessorContext,
472 ) -> Result<Box<dyn AudioNodeProcessor>, NodeError> {
473 Ok(Box::new(
474 self.constructor
475 .construct_processor(&self.configuration, cx)?,
476 ))
477 }
478
479 fn update(&mut self, cx: UpdateContext) {
480 self.constructor.update(&self.configuration, cx);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected