[][src]Trait xblend::blend::SrcOut

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl SrcOut for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...