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

pub trait BorrowDepthAttach {
    type DepthAttach: DepthAttach;
    pub fn borrow_depth_attachment(&self) -> &Self::DepthAttach;
}

Associated Types

type DepthAttach: DepthAttach[src]

Loading content...

Required methods

pub fn borrow_depth_attachment(&self) -> &Self::DepthAttach[src]

Loading content...

Implementations on Foreign Types

impl BorrowDepthAttach for Rc<RenderBuffer>[src]

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

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

impl BorrowDepthAttach for Rc<DepthAttachment>[src]

impl BorrowDepthAttach for Rc<Texture>[src]

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

Loading content...

Implementors

impl<'a> BorrowDepthAttach for &'a DepthAttachment[src]

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

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

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

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

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

impl<C> BorrowDepthAttach for C where
    C: DepthAttach
[src]

Loading content...