[][src]Struct valora::prelude::blend::Equations

pub struct Equations {
    pub color_equation: Equation,
    pub alpha_equation: Equation,
    pub color_parameters: Parameters,
    pub alpha_parameters: Parameters,
}

A pair of blending equations and corresponding parameters.

The Equations type is similar to how blending works in OpenGL, where a blend function has can be written as e(sp * S, dp * D). e is the equation (like s + d), sp and dp are the source and destination parameters, and S and D are the source and destination colors.

Fields

color_equation: Equation

The equation for the color components.

alpha_equation: Equation

The equation for the alpha component.

color_parameters: Parameters

The parameters for the color components.

alpha_parameters: Parameters

The parameters for the alpha component.

Methods

impl Equations[src]

pub fn from_equations(color: Equation, alpha: Equation) -> Equations[src]

Create a pair of blending equations, where all the parameters are One.

pub fn from_parameters(source: Parameter, destination: Parameter) -> Equations[src]

Create a pair of additive blending equations with the provided parameters.

Trait Implementations

impl<C> BlendFunction<C> for Equations where
    C: Blend<Color = C> + ComponentWise + Clone,
    <C as ComponentWise>::Scalar: Float
[src]

impl Clone for Equations[src]

impl Copy for Equations[src]

impl Debug for Equations[src]

impl Eq for Equations[src]

impl PartialEq<Equations> for Equations[src]

impl StructuralEq for Equations[src]

impl StructuralPartialEq for Equations[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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

impl<C, F> BlendFunction<C> for F where
    C: Blend<Color = C> + ComponentWise,
    F: FnOnce(PreAlpha<C, <C as ComponentWise>::Scalar>, PreAlpha<C, <C as ComponentWise>::Scalar>) -> PreAlpha<C, <C as ComponentWise>::Scalar>,
    <C as ComponentWise>::Scalar: Float
[src]

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

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

impl<T> Content for T where
    T: Copy
[src]

type Owned = T

A type that holds a sized version of the content.

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<T> SetParameter for T

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,