pub struct DepthStencilRenderBuffer { /* private fields */ }Expand description
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 DepthStencilRenderBuffer directly.
Implementations§
Source§impl DepthStencilRenderBuffer
impl DepthStencilRenderBuffer
Sourcepub fn new<F>(
facade: &F,
format: DepthStencilFormat,
width: u32,
height: u32,
) -> Result<DepthStencilRenderBuffer, CreationError>
pub fn new<F>( facade: &F, format: DepthStencilFormat, width: u32, height: u32, ) -> Result<DepthStencilRenderBuffer, CreationError>
Builds a new render buffer.
Sourcepub fn new_multisample<F>(
facade: &F,
format: DepthStencilFormat,
width: u32,
height: u32,
samples: u32,
) -> Result<DepthStencilRenderBuffer, CreationError>
pub fn new_multisample<F>( facade: &F, format: DepthStencilFormat, width: u32, height: u32, samples: u32, ) -> Result<DepthStencilRenderBuffer, CreationError>
Builds a new render buffer with multisampling.
Methods from Deref<Target = RenderBufferAny>§
Sourcepub fn get_dimensions(&self) -> (u32, u32)
pub fn get_dimensions(&self) -> (u32, u32)
Returns the dimensions of the render buffer.
Sourcepub fn get_samples(&self) -> Option<u32>
pub fn get_samples(&self) -> Option<u32>
Returns the number of samples of the render buffer, or None if multisampling isn’t
enabled.
Sourcepub fn get_context(&self) -> &Rc<Context>
pub fn get_context(&self) -> &Rc<Context>
Returns the context used to create this renderbuffer.
Sourcepub fn kind(&self) -> TextureKind
pub fn kind(&self) -> TextureKind
Returns the kind of renderbuffer.
Sourcepub fn get_depth_stencil_bits(&self) -> (u16, u16)
pub fn get_depth_stencil_bits(&self) -> (u16, u16)
Determines the number of depth and stencil bits in the format of this render buffer.
Trait Implementations§
Source§impl Deref for DepthStencilRenderBuffer
impl Deref for DepthStencilRenderBuffer
Source§type Target = RenderBufferAny
type Target = RenderBufferAny
The resulting type after dereferencing.
Source§fn deref(&self) -> &RenderBufferAny
fn deref(&self) -> &RenderBufferAny
Dereferences the value.
Source§impl DerefMut for DepthStencilRenderBuffer
impl DerefMut for DepthStencilRenderBuffer
Source§fn deref_mut(&mut self) -> &mut RenderBufferAny
fn deref_mut(&mut self) -> &mut RenderBufferAny
Mutably dereferences the value.
Source§impl GlObject for DepthStencilRenderBuffer
impl GlObject for DepthStencilRenderBuffer
Source§impl<'a> ToDepthStencilAttachment<'a> for &'a DepthStencilRenderBuffer
impl<'a> ToDepthStencilAttachment<'a> for &'a DepthStencilRenderBuffer
Source§fn to_depth_stencil_attachment(self) -> DepthStencilAttachment<'a>
fn to_depth_stencil_attachment(self) -> DepthStencilAttachment<'a>
Builds the
DepthStencilAttachment.Auto Trait Implementations§
impl Freeze for DepthStencilRenderBuffer
impl !RefUnwindSafe for DepthStencilRenderBuffer
impl !Send for DepthStencilRenderBuffer
impl !Sync for DepthStencilRenderBuffer
impl Unpin for DepthStencilRenderBuffer
impl !UnwindSafe for DepthStencilRenderBuffer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more