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

pub struct UniformBlock {
    pub id: i32,
    pub initial_binding: i32,
    pub size: usize,
    pub layout: BlockLayout,
}

Information about a uniform block (except its name).

Fields

Identifier of the block.

This is internal information, you probably don't need to use it.

Initial bind point of the block.

This is internal information, you probably don't need to use it.

Size in bytes of the data in the block.

Layout of the block.

Trait Implementations

impl Clone for UniformBlock
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for UniformBlock
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations