Struct 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
id: i32
Indentifier of the block.
This is internal information, you probably don't need to use it.
initial_binding: i32
Initial bind point of the block.
This is internal information, you probably don't need to use it.
size: usize
Size in bytes of the data in the block.
layout: BlockLayout
Layout of the block.
Trait Implementations
impl Clone for UniformBlock
[src]
fn clone(&self) -> UniformBlock
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more