[][src]Trait xblend::blend::Lighten

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

Darken blending mode
output = src.gray > dst.gray ? src : dst

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Lighten for RGB<f32>[src]

type Output = RGB<f32>

impl Lighten for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...