Trait gstreamer_gl::prelude::GLFramebufferExt
source · pub trait GLFramebufferExt:
IsA<GLFramebuffer>
+ Sealed
+ 'static {
// Provided methods
unsafe fn attach(&self, attachment_point: u32, mem: &mut GLBaseMemory) { ... }
fn bind(&self) { ... }
fn effective_dimensions(&self) -> (u32, u32) { ... }
fn id(&self) -> u32 { ... }
}
Expand description
Provided Methods§
sourceunsafe fn attach(&self, attachment_point: u32, mem: &mut GLBaseMemory)
unsafe fn attach(&self, attachment_point: u32, mem: &mut GLBaseMemory)
sourcefn bind(&self)
fn bind(&self)
Bind self
into the current thread
Must be called with the same OpenGL context current that self
was created
with.
sourcefn effective_dimensions(&self) -> (u32, u32)
fn effective_dimensions(&self) -> (u32, u32)
Object Safety§
This trait is not object safe.