Trait luminance::tess::TessVertexData[][src]

pub trait TessVertexData<S>: Vertex where
    S: ?Sized
{ type Data; fn coherent_len(data: &Self::Data) -> Result<usize, TessError>; }
Expand description

Vertex input data of a TessBuilder.

Associated Types

Vertex storage type.

Required methods

Coherent length of the vertices.

Vertices length can be incohent for some implementations of TessVertexData::Data, especially with deinterleaved memory.

Implementors