Struct glium::framebuffer::StencilRenderBuffer [] [src]

pub struct StencilRenderBuffer {
    // some fields omitted
}

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.

Methods

impl StencilRenderBuffer
[src]

fn new<F>(facade: &F, format: StencilFormat, width: u32, height: u32) -> Result<StencilRenderBufferCreationError> where F: Facade

Builds a new render buffer.

Methods from Deref<Target=RenderBufferAny>

fn get_dimensions(&self) -> (u32, u32)

Returns the dimensions of the render buffer.

fn get_samples(&self) -> Option<u32>

Returns the number of samples of the render buffer, or None if multisampling isn't enabled.

fn get_context(&self) -> &Rc<Context>

Returns the context used to create this renderbuffer.

fn kind(&self) -> TextureKind

Returns the kind of renderbuffer.

Trait Implementations

impl<'a> ToStencilAttachment<'a> for &'a StencilRenderBuffer
[src]

fn to_stencil_attachment(self) -> StencilAttachment<'a>

Builds the StencilAttachment.

impl Deref for StencilRenderBuffer
[src]

type Target = RenderBufferAny

The resulting type after dereferencing

fn deref(&self) -> &RenderBufferAny

The method called to dereference a value

impl DerefMut for StencilRenderBuffer
[src]

fn deref_mut(&mut self) -> &mut RenderBufferAny

The method called to mutably dereference a value

impl GlObject for StencilRenderBuffer
[src]

type Id = GLuint

The type of identifier for this object.

fn get_id(&self) -> GLuint

Returns the id of the object.