[][src]Trait processing::uniforms::Uniforms

pub trait Uniforms {
    fn visit_values<'a, F>(&'a self, F)
    where
        F: FnMut(&str, UniformValue<'a>)
; }

Object that contains the values of all the uniforms to bind to a program.

Objects of this type can be passed to the draw() function.

Required methods

fn visit_values<'a, F>(&'a self, F) where
    F: FnMut(&str, UniformValue<'a>), 

Calls the parameter once with the name and value of each uniform.

Loading content...

Implementors

impl Uniforms for EmptyUniforms[src]

impl<'n, T, R> Uniforms for UniformsStorage<'n, T, R> where
    R: Uniforms,
    T: AsUniformValue
[src]

Loading content...