pub trait GLBaseFilterExt: IsA<GLBaseFilter> + Sealed + 'static {
    // Provided methods
    fn find_gl_context(&self) -> bool { ... }
    fn gl_context(&self) -> Option<GLContext> { ... }
    fn context(&self) -> Option<GLContext> { ... }
    fn connect_context_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn find_gl_context(&self) -> bool

Available on crate feature v1_16 only.
source

fn gl_context(&self) -> Option<GLContext>

Available on crate feature v1_18 only.
source

fn context(&self) -> Option<GLContext>

source

fn connect_context_notify<F: Fn(&Self) + Send + Sync + 'static>( &self, f: F ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§