Trait vulkano::pipeline::vertex::Source [] [src]

pub unsafe trait Source<L>: 'static + Send + Sync {
    type Iter: ExactSizeIterator<Item=Arc<Buffer>>;
    fn decode(&self, L) -> (Self::Iter, usize, usize);
}

Extension trait of Definition. The L parameter is an acceptable vertex source for this vertex definition.

Associated Types

Iterator used by decode.

Required Methods

Checks and returns the list of buffers, number of vertices and number of instances.

Implementors