[−][src]Struct glium::framebuffer::DepthRenderBuffer
A render buffer is similar to a texture, but is optimized for usage as a draw target.
Contrary to a texture, you can't sample or modify the content of the DepthRenderBuffer
directly.
Implementations
impl DepthRenderBuffer
[src]
pub fn new<F: ?Sized>(
facade: &F,
format: DepthFormat,
width: u32,
height: u32
) -> Result<DepthRenderBuffer, CreationError> where
F: Facade,
[src]
facade: &F,
format: DepthFormat,
width: u32,
height: u32
) -> Result<DepthRenderBuffer, CreationError> where
F: Facade,
Builds a new render buffer.
Methods from Deref<Target = RenderBufferAny>
pub fn get_dimensions(&self) -> (u32, u32)
[src]
Returns the dimensions of the render buffer.
pub fn get_samples(&self) -> Option<u32>
[src]
Returns the number of samples of the render buffer, or None
if multisampling isn't
enabled.
pub fn get_context(&self) -> &Rc<Context>
[src]
Returns the context used to create this renderbuffer.
pub fn kind(&self) -> TextureKind
[src]
Returns the kind of renderbuffer.
pub fn get_depth_stencil_bits(&self) -> (u16, u16)
[src]
Determines the number of depth and stencil bits in the format of this render buffer.
Trait Implementations
impl Deref for DepthRenderBuffer
[src]
type Target = RenderBufferAny
The resulting type after dereferencing.
fn deref(&self) -> &RenderBufferAny
[src]
impl DerefMut for DepthRenderBuffer
[src]
fn deref_mut(&mut self) -> &mut RenderBufferAny
[src]
impl GlObject for DepthRenderBuffer
[src]
impl<'a> ToDepthAttachment<'a> for &'a DepthRenderBuffer
[src]
fn to_depth_attachment(self) -> DepthAttachment<'a>
[src]
Auto Trait Implementations
impl !RefUnwindSafe for DepthRenderBuffer
impl !Send for DepthRenderBuffer
impl !Sync for DepthRenderBuffer
impl Unpin for DepthRenderBuffer
impl !UnwindSafe for DepthRenderBuffer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,