[][src]Enum vxdraw::blender::BlendOp

pub enum BlendOp {
    Add {
        src: BlendFactor,
        dst: BlendFactor,
    },
    Sub {
        src: BlendFactor,
        dst: BlendFactor,
    },
    RevSub {
        src: BlendFactor,
        dst: BlendFactor,
    },
    Min,
    Max,
}

Specify the blend operation for a color attachment

Variants

Add

Adds the source and destination colors, both multiplied by factors

Fields of Add

src: BlendFactor

Source multiplied by a factor

dst: BlendFactor

Destination (attachment) multiplied by factor

Sub

Subtracts destination from source, both multiplied by factors

Fields of Sub

src: BlendFactor

Source multiplied by a factor

dst: BlendFactor

Destination (attachment) multiplied by factor

RevSub

Subtracts source from destination, both multiplied by factors

Fields of RevSub

src: BlendFactor

Source multiplied by a factor

dst: BlendFactor

Destination (attachment) multiplied by factor

Min

Minimum value of either src or dst

Max

Maximum value of either src or dst

Trait Implementations

impl Clone for BlendOp[src]

impl Copy for BlendOp[src]

impl Debug for BlendOp[src]

Auto Trait Implementations

impl Unpin for BlendOp

impl Sync for BlendOp

impl Send for BlendOp

impl UnwindSafe for BlendOp

impl RefUnwindSafe for BlendOp

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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]

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

impl<T> SetParameter for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,