[][src]Trait xblend::blend::DstATop

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl DstATop for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...