Struct nannou::ui::backend::glium::glium::program::SubroutineUniform[][src]

pub struct SubroutineUniform {
    pub index: u32,
    pub location: i32,
    pub size: Option<usize>,
    pub compatible_subroutines: Vec<Subroutine>,
}

Information about a Subroutine Uniform (except name)

Fields

The index of the subroutine uniform. Needed to query information from the OpenGL backend.

The location of the uniform. This is used to bind subroutines to this subroutine uniform.

If the uniform is an array, the size of the array.

A list of subroutines that can potentially be used with this uniform.

Trait Implementations

impl Clone for SubroutineUniform
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SubroutineUniform
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations