[][src]Trait xblend::blend::Darken

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

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

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Darken for RGB<f32>[src]

type Output = RGB<f32>

impl Darken for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...