Struct glium::framebuffer::RenderBufferAny [] [src]

pub struct RenderBufferAny {
    // some fields omitted
}

A RenderBuffer of indeterminate type.

Methods

impl RenderBufferAny
[src]

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 Drop for RenderBufferAny
[src]

fn drop(&mut self)

A method called when the value goes out of scope. Read more

impl GlObject for RenderBufferAny
[src]

type Id = GLuint

The type of identifier for this object.

fn get_id(&self) -> GLuint

Returns the id of the object.