[][src]Trait xblend::blend::SrcIn

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

SrcIn blending mode
output = src * dst.alpha

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl SrcIn for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...