pub trait RenderPipeline {
    fn draw(&self, image: &mut RenderTarget);
}

Required methods

Draws the ctx of the pipeline.

Implementors