Trait rin::gl::fbo::BorrowColorAttach[][src]

pub trait BorrowColorAttach {
    type ColorAttach: ColorAttach;
    pub fn borrow_color_attachment(&self) -> &Self::ColorAttach;
}

Associated Types

type ColorAttach: ColorAttach[src]

Loading content...

Required methods

pub fn borrow_color_attachment(&self) -> &Self::ColorAttach[src]

Loading content...

Implementations on Foreign Types

impl<T> BorrowColorAttach for Rc<TextureLevelRef<T>> where
    T: Borrow<Texture>, 
[src]

impl<T> BorrowColorAttach for Rc<CubemapLevelRef<T>> where
    T: Borrow<CubeMap>, 
[src]

impl BorrowColorAttach for Rc<RenderBuffer>[src]

impl BorrowColorAttach for Rc<ColorAttachment>[src]

impl BorrowColorAttach for Rc<Texture>[src]

impl<T> BorrowColorAttach for Rc<CubemapFaceLevelRef<T>> where
    T: Borrow<CubeMap>, 
[src]

Loading content...

Implementors

impl<'a> BorrowColorAttach for &'a ColorAttachment[src]

impl<'a> BorrowColorAttach for &'a Texture[src]

impl<'a> BorrowColorAttach for &'a RenderBuffer[src]

impl<'a, T> BorrowColorAttach for &'a CubemapFaceLevelRef<T> where
    T: Borrow<CubeMap>, 
[src]

impl<'a, T> BorrowColorAttach for &'a CubemapLevelRef<T> where
    T: Borrow<CubeMap>, 
[src]

impl<'a, T> BorrowColorAttach for &'a TextureLevelRef<T> where
    T: Borrow<Texture>, 
[src]

impl<C> BorrowColorAttach for C where
    C: ColorAttach
[src]

Loading content...