pub struct StencilRenderBuffer { /* 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 StencilRenderBuffer directly.
Implementations§
Source§impl StencilRenderBuffer
impl StencilRenderBuffer
Sourcepub fn new<F>(
facade: &F,
format: StencilFormat,
width: u32,
height: u32,
) -> Result<StencilRenderBuffer, CreationError>
pub fn new<F>( facade: &F, format: StencilFormat, width: u32, height: u32, ) -> Result<StencilRenderBuffer, CreationError>
Builds a new render buffer.
Sourcepub fn new_multisample<F>(
facade: &F,
format: StencilFormat,
width: u32,
height: u32,
samples: u32,
) -> Result<StencilRenderBuffer, CreationError>
pub fn new_multisample<F>( facade: &F, format: StencilFormat, width: u32, height: u32, samples: u32, ) -> Result<StencilRenderBuffer, 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 StencilRenderBuffer
impl Deref for StencilRenderBuffer
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 StencilRenderBuffer
impl DerefMut for StencilRenderBuffer
Source§fn deref_mut(&mut self) -> &mut RenderBufferAny
fn deref_mut(&mut self) -> &mut RenderBufferAny
Mutably dereferences the value.
Source§impl GlObject for StencilRenderBuffer
impl GlObject for StencilRenderBuffer
Source§impl<'a> ToStencilAttachment<'a> for &'a StencilRenderBuffer
impl<'a> ToStencilAttachment<'a> for &'a StencilRenderBuffer
Source§fn to_stencil_attachment(self) -> StencilAttachment<'a>
fn to_stencil_attachment(self) -> StencilAttachment<'a>
Builds the
StencilAttachment.Auto Trait Implementations§
impl !RefUnwindSafe for StencilRenderBuffer
impl !Send for StencilRenderBuffer
impl !Sync for StencilRenderBuffer
impl !UnwindSafe for StencilRenderBuffer
impl Freeze for StencilRenderBuffer
impl Unpin for StencilRenderBuffer
impl UnsafeUnpin for StencilRenderBuffer
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