Struct gfx::device::shade::ProgramInfo [] [src]

pub struct ProgramInfo {
    pub attributes: Vec<Attribute>,
    pub uniforms: Vec<UniformVar>,
    pub blocks: Vec<BlockVar>,
    pub textures: Vec<SamplerVar>,
}

Metadata about a program.

Fields

attributes: Vec<Attribute>

Attributes in the program.

uniforms: Vec<UniformVar>

Uniforms in the program

blocks: Vec<BlockVar>

Uniform blocks in the program

textures: Vec<SamplerVar>

Samplers in the program

Trait Implementations

impl Debug for ProgramInfo
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for ProgramInfo
[src]

fn eq(&self, __arg_0: &ProgramInfo) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &ProgramInfo) -> bool

This method tests for !=.

impl Clone for ProgramInfo
[src]

fn clone(&self) -> ProgramInfo

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