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

type Meta[src]

The associated “meta” struct.

Loading content...

Required methods

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

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

Loading content...

Implementors

Loading content...