[][src]Trait xblend::blend::DstOver

pub trait DstOver {
    type Output;
    pub fn dst_over(self, rhs: Self) -> Self::Output;
}

DstOver blending mode
output = src * (1 - dst.alpha) + dst

Associated Types

Loading content...

Required methods

pub fn dst_over(self, rhs: Self) -> Self::Output[src]

Loading content...

Implementors

impl DstOver for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...