[][src]Trait luminance::tess::TessIndex

pub unsafe trait TessIndex {
    const INDEX_TYPE: TessIndexType;
}

Class of tessellation indexes.

Values which types implement this trait are allowed to be used to index tessellation in indexed draw commands.

You shouldn’t have to worry to much about that trait. Have a look at the current implementors for an exhaustive list of types you can use.

Implementing this trait is unsafe.

Associated Constants

const INDEX_TYPE: TessIndexType

Type of the underlying index.

You are limited in which types you can use as indexes. Feel free to have a look at the documentation of the TessIndexType trait for further information.

Loading content...

Implementations on Foreign Types

impl TessIndex for u8[src]

impl TessIndex for u16[src]

impl TessIndex for u32[src]

Loading content...

Implementors

Loading content...