[]Trait geng::prelude::ugli::Uniforms

pub trait Uniforms {
    fn walk_uniforms<C>(&self, visitor: &mut C)
    where
        C: UniformVisitor
; }

Required methods

fn walk_uniforms<C>(&self, visitor: &mut C) where
    C: UniformVisitor

Loading content...

Implementations on Foreign Types

impl Uniforms for ()

impl<U> Uniforms for Option<U> where
    U: Uniforms

impl<A, B, C> Uniforms for (A, B, C) where
    A: Uniforms,
    B: Uniforms,
    C: Uniforms

impl<A, B> Uniforms for (A, B) where
    A: Uniforms,
    B: Uniforms

impl<'a, U> Uniforms for &'a U where
    U: Uniforms

Loading content...

Implementors

impl<'a, U> Uniforms for SingleUniform<'a, U> where
    U: Uniform

Loading content...