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

type Meta

The associated "meta" struct.

Required Methods

fn bake_to(&self, &mut RawDataSet<R>, meta: &Self::Meta, &mut Manager<R>)

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

Implementors