Trait rend3::RenderRoutine[][src]

pub trait RenderRoutine<Input = (), Output = ()> {
    fn render(
        &mut self,
        renderer: Arc<Renderer>,
        cmd_bufs: Sender<CommandBuffer>,
        ready: ManagerReadyOutput,
        input: Input,
        output: Output
    ); }
Expand description

Routine which renders the current state of the renderer. The rend3-pbr crate offers a PBR, clustered-forward implementation of the render routine.

Required methods

Implementors