Trait glium::index::Index [] [src]

pub unsafe trait Index: Copy + Send + 'static {
    fn get_type() -> IndexType;

    fn is_supported<C>(caps: &C) -> bool where C: CapabilitiesSource { ... }
}

An index from the index buffer.

Required Methods

fn get_type() -> IndexType

Returns the IndexType corresponding to this type.

Provided Methods

fn is_supported<C>(caps: &C) -> bool where C: CapabilitiesSource

Returns true if this type of index is supported by the backend.

Implementors