[][src]Trait xblend::blend::Screen

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

Screen blending mode
output = 1 - (1 - src) * (1 - dst)

Associated Types

Loading content...

Required methods

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

Loading content...

Implementors

impl Screen for RGB<f32>[src]

type Output = RGB<f32>

impl Screen for RGBA<f32>[src]

type Output = RGBA<f32>

Loading content...