[][src]Trait xblend::blend::Src

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

Src blending mode
output = src

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Src for RGB<f32>[src]

type Output = RGB<f32>

impl Src for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...