[][src]Trait xblend::blend::DstOut

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl DstOut for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...