[][src]Trait web_glitz::pipeline::graphics::IndexData

pub trait IndexData {
    fn descriptor(&self) -> IndexDataDescriptor;
}

Describes a data source that can be used to provide indexing data to a draw command.

Required methods

fn descriptor(&self) -> IndexDataDescriptor

Returns a descriptor of the index data.

Loading content...

Implementors

impl<'a, T> IndexData for &'a IndexBuffer<T> where
    T: IndexFormat
[src]

impl<'a, T> IndexData for IndexBufferView<'a, T> where
    T: IndexFormat
[src]

Loading content...