pub trait PipelineTrait: RenderPipeline + Any + Send {
    fn box_eq(&self, other: &(dyn Any + 'static)) -> bool;
fn as_any(&self) -> &(dyn Any + 'static);
fn clone_box(&self) -> Box<dyn PipelineTrait + 'static, Global>; fn draw_pipeline(&self, image: &mut RenderTarget) { ... } }
Expand description

Used to implement a custom render pipeline.

Required methods

Equality for two Pipeline objects.

Converts self to an any reference.

Clones self as box.

Provided methods

Draws the ctx of the pipeline.

Implementors