[][src]Trait xblend::blend::SrcATop

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl SrcATop for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...