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

pub struct Tess { /* fields omitted */ }

GPU tessellation.

Methods

impl Tess
[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.

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.

Get an immutable slice over the vertices stored on GPU.

Get a mutable slice over the vertices stored on GPU.

Trait Implementations

impl Drop for Tess
[src]

A method called when the value goes out of scope. Read more