[][src]Trait xblend::blend::SrcOver

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl SrcOver for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...