Struct luminance::tess::Tess [] [src]

pub struct Tess<V> { /* fields omitted */ }

GPU typed tessellation.

The tessellation is typed with the vertex type.

Methods

impl<V> Tess<V> where
    V: Vertex
[src]

[src]

Create a new tessellation.

The mode argument gives the type of the primitives and how to interpret the vertices and indices slices. If indices is set to None, the tessellation will use the vertices as-is.

[src]

Get an immutable slice over the vertices stored on GPU.

[src]

Get a mutable slice over the vertices stored on GPU.

impl Tess<()>
[src]

[src]

Create a tessellation that will procedurally generate its vertices (i.e. attribute-less).

You just have to give the Mode to use and the number of vertices the tessellation must have. You’ll be handed back a tessellation object that doesn’t actually hold anything. You will have to generate the vertices on the fly in your shaders.

Trait Implementations

impl<V: Debug> Debug for Tess<V>
[src]

[src]

Formats the value using the given formatter.

impl<V: Eq> Eq for Tess<V>
[src]

impl<V: PartialEq> PartialEq for Tess<V>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl<V> Drop for Tess<V>
[src]

[src]

Executes the destructor for this type. Read more