Struct nannou::ui::backend::glium::glium::index::DrawCommandNoIndices[][src]

#[repr(C)]
pub struct DrawCommandNoIndices { pub count: u32, pub instance_count: u32, pub first_index: u32, pub base_instance: u32, }

Represents an element in a list of draw commands.

Fields

Number of vertices to draw.

Number of instances to draw. If it's 0, nothing will be drawn.

First vertex to draw in the vertices source.

Numero of the first instance to draw.

Trait Implementations

impl Clone for DrawCommandNoIndices
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DrawCommandNoIndices
[src]

Formats the value using the given formatter. Read more

impl UniformBlock for DrawCommandNoIndices
[src]

Checks whether the uniforms' layout matches the given block if Self starts at the given offset. Read more

Builds the BlockLayout corresponding to the current object.

impl Copy for DrawCommandNoIndices
[src]

Auto Trait Implementations