gstreamer_gl::prelude

Trait GLContextExt

Source
pub trait GLContextExt:
    IsA<GLContext>
    + Sealed
    + 'static {
Show 21 methods // Provided methods fn activate(&self, activate: bool) -> Result<(), BoolError> { ... } fn can_share(&self, other_context: &impl IsA<GLContext>) -> bool { ... } fn check_feature(&self, feature: &str) -> bool { ... } fn check_framebuffer_status(&self, fbo_target: u32) -> bool { ... } fn check_gl_version(&self, api: GLAPI, maj: i32, min: i32) -> bool { ... } fn clear_framebuffer(&self) { ... } fn clear_shader(&self) { ... } fn create( &self, other_context: Option<&impl IsA<GLContext>>, ) -> Result<(), Error> { ... } fn destroy(&self) { ... } fn fill_info(&self) -> Result<(), Error> { ... } fn display(&self) -> GLDisplay { ... } fn gl_api(&self) -> GLAPI { ... } fn gl_platform(&self) -> GLPlatform { ... } fn gl_platform_version(&self) -> (i32, i32) { ... } fn gl_version(&self) -> (i32, i32) { ... } fn window(&self) -> Option<GLWindow> { ... } fn is_shared(&self) -> bool { ... } fn set_shared_with(&self, share: &impl IsA<GLContext>) { ... } fn set_window(&self, window: impl IsA<GLWindow>) -> Result<(), BoolError> { ... } fn supports_glsl_profile_version( &self, version: GLSLVersion, profile: GLSLProfile, ) -> bool { ... } fn swap_buffers(&self) { ... }
}

Provided Methods§

Source

fn activate(&self, activate: bool) -> Result<(), BoolError>

Source

fn can_share(&self, other_context: &impl IsA<GLContext>) -> bool

Source

fn check_feature(&self, feature: &str) -> bool

Source

fn check_framebuffer_status(&self, fbo_target: u32) -> bool

Source

fn check_gl_version(&self, api: GLAPI, maj: i32, min: i32) -> bool

Source

fn clear_framebuffer(&self)

Source

fn clear_shader(&self)

Source

fn create( &self, other_context: Option<&impl IsA<GLContext>>, ) -> Result<(), Error>

Source

fn destroy(&self)

Source

fn fill_info(&self) -> Result<(), Error>

Source

fn display(&self) -> GLDisplay

Source

fn gl_api(&self) -> GLAPI

Source

fn gl_platform(&self) -> GLPlatform

Source

fn gl_platform_version(&self) -> (i32, i32)

Source

fn gl_version(&self) -> (i32, i32)

Source

fn window(&self) -> Option<GLWindow>

Source

fn is_shared(&self) -> bool

Source

fn set_shared_with(&self, share: &impl IsA<GLContext>)

Source

fn set_window(&self, window: impl IsA<GLWindow>) -> Result<(), BoolError>

Source

fn supports_glsl_profile_version( &self, version: GLSLVersion, profile: GLSLProfile, ) -> bool

Source

fn swap_buffers(&self)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§