[][src]Enum luminance::blending::Factor

pub enum Factor {
    One,
    Zero,
    SrcColor,
    SrcColorComplement,
    DestColor,
    DestColorComplement,
    SrcAlpha,
    SrcAlphaComplement,
    DstAlpha,
    DstAlphaComplement,
    SrcAlphaSaturate,
}

Blending factors. Pixel data are multiplied by these factors to achieve several effects driven by blending equations.

Variants

One

1 * color = factor

Zero

0 * color = 0

SrcColor

src * color

SrcColorComplement

(1 - src) * color

DestColor

dst * color

DestColorComplement

(1 - dst) * color

SrcAlpha

srcA * color

SrcAlphaComplement

(1 - src) * color

DstAlpha

dstA * color

DstAlphaComplement

(1 - dstA) * color

SrcAlphaSaturate

This behavior is still not well understood. Dammit.

Trait Implementations

impl Eq for Factor[src]

impl Clone for Factor[src]

impl PartialEq<Factor> for Factor[src]

impl Copy for Factor[src]

impl Debug for Factor[src]

Auto Trait Implementations

impl Sync for Factor

impl Send for Factor

impl Unpin for Factor

impl UnwindSafe for Factor

impl RefUnwindSafe for Factor

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]