Trait gfx::pso::PipelineData

source ·
pub trait PipelineData<R: Resources> {
    type Meta;

    // Required method
    fn bake_to(
        &self,
        _: &mut RawDataSet<R>,
        _: &Self::Meta,
        _: &mut Manager<R>,
        _: &mut AccessInfo<R>
    );
}
Expand description

a service trait implemented the “data” structure of PSO.

Required Associated Types§

source

type Meta

The associated “meta” struct.

Required Methods§

source

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

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

Implementors§