[][src]Trait xblend::blend::Dst

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

Dst blending mode
output = dst

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Dst for RGB<f32>[src]

type Output = RGB<f32>

impl Dst for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...