pub trait GLBaseFilterImpl: GLBaseFilterImplExt + BaseTransformImpl {
    fn gl_set_caps(
        &self,
        filter: &Self::Type,
        incaps: &Caps,
        outcaps: &Caps
    ) -> Result<(), LoggableError> { ... }
fn gl_start(&self, filter: &Self::Type) -> Result<(), LoggableError> { ... }
fn gl_stop(&self, filter: &Self::Type) { ... } }

Provided methods

Implementors