pub trait GLFilterImplExt: GLFilterImpl {
// Provided methods
fn parent_set_caps(
&self,
incaps: &Caps,
outcaps: &Caps,
) -> Result<(), LoggableError> { ... }
fn parent_filter(
&self,
input: &Buffer,
output: &Buffer,
) -> Result<(), LoggableError> { ... }
fn parent_filter_texture(
&self,
input: &GLMemory,
output: &GLMemory,
) -> Result<(), LoggableError> { ... }
fn parent_init_fbo(&self) -> Result<(), LoggableError> { ... }
fn parent_transform_internal_caps(
&self,
direction: PadDirection,
caps: &Caps,
filter_caps: Option<&Caps>,
) -> Option<Caps> { ... }
}
Provided Methods§
fn parent_set_caps( &self, incaps: &Caps, outcaps: &Caps, ) -> Result<(), LoggableError>
fn parent_filter( &self, input: &Buffer, output: &Buffer, ) -> Result<(), LoggableError>
fn parent_filter_texture( &self, input: &GLMemory, output: &GLMemory, ) -> Result<(), LoggableError>
fn parent_init_fbo(&self) -> Result<(), LoggableError>
fn parent_transform_internal_caps( &self, direction: PadDirection, caps: &Caps, filter_caps: Option<&Caps>, ) -> Option<Caps>
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.