[][src]Trait gstreamer_gl::GLFramebufferExt

pub trait GLFramebufferExt: 'static {
    fn bind(&self);
fn get_effective_dimensions(&self) -> (u32, u32);
fn get_id(&self) -> u32; }

Trait containing all GLFramebuffer methods.

Implementors

GLFramebuffer

Required methods

fn bind(&self)

Bind self into the current thread

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

Retreive the effective dimensions from the current attachments attached to self.

width

output width

height

output height

fn get_id(&self) -> u32

Returns

the OpenGL id for self

Loading content...

Implementors

impl<O: IsA<GLFramebuffer>> GLFramebufferExt for O[src]

Loading content...