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

pub trait PipelineData<R: Resources> {
    type Meta;
    fn bake_to(
        &self,
        _: &mut RawDataSet<R>,
        _: &Self::Meta,
        _: &mut Manager<R>,
        _: &mut AccessInfo<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