Trait gfx::pso::PipelineData [] [src]

pub trait PipelineData<R: Resources> {
    type Meta;
    fn bake_to(&self, &mut RawDataSet<R>, meta: &Self::Meta, &mut Manager<R>);
}

a service trait implemented the "data" structure of PSO.

Associated Types

The associated "meta" struct.

Required Methods

Dump all the contained data into the raw data set, given the mapping ("meta"), and a handle manager.

Implementors