pub trait ShaderBindable: Clone + Copy {
    // Required method
    fn bind_to(&self, context: &mut PipelineContext<'_>, index: u32);
}

Required Methods§

source

fn bind_to(&self, context: &mut PipelineContext<'_>, index: u32)

Object Safety§

This trait is not object safe.

Implementors§