Trait glin::fbo::BorrowColorAttach[][src]

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

Associated Types

type ColorAttach: ColorAttach[src]

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

impl BorrowColorAttach for Rc<ColorAttachment>[src]

impl BorrowColorAttach for Rc<Texture>[src]

impl BorrowColorAttach for Rc<RenderBuffer>[src]

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

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

impl<T: Borrow<CubeMap>> BorrowColorAttach for Rc<CubemapFaceLevelRef<T>>[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: Borrow<CubeMap>> BorrowColorAttach for &'a CubemapFaceLevelRef<T>[src]

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

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

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

Loading content...