pub trait BlendFunction<C>where
    C: Premultiply,{
    // Required method
    fn apply_to(
        self,
        source: PreAlpha<C>,
        destination: PreAlpha<C>,
    ) -> PreAlpha<C>;
}Expand description
A trait for custom blend functions.