Trait gfx::pso::PipelineInit [] [src]

pub trait PipelineInit {
    type Meta;
    fn link_to<'s>(&self,
                   &mut Descriptor,
                   &'s ProgramInfo)
                   -> Result<Self::Meta, InitError<&'s str>>; }

A service trait implemented by the "init" structure of PSO.

Associated Types

The associated "meta" struct.

Required Methods

Attempt to map a PSO descriptor to a give shader program, represented by ProgramInfo. Returns an instance of the "meta" struct upon successful mapping.

Implementors