[][src]Trait xblend::blend::Multiply

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

Multiply blending mode
output = src * dst

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Multiply for RGB<f32>[src]

type Output = RGB<f32>

impl Multiply for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...