Struct wgpu::BlendComponent[][src]

#[repr(C)]
pub struct BlendComponent { pub src_factor: BlendFactor, pub dst_factor: BlendFactor, pub operation: BlendOperation, }

Describes the blend component of a pipeline.

Fields

src_factor: BlendFactor

Multiplier for the source, which is produced by the fragment shader.

dst_factor: BlendFactor

Multiplier for the destination, which is stored in the target.

operation: BlendOperation

The binary operation applied to the source and destination, multiplied by their respective factors.

Implementations

impl BlendComponent[src]

pub const REPLACE: BlendComponent[src]

Default blending state that replaces destination with the source.

pub const OVER: BlendComponent[src]

Blend state of (1 * src) + ((1 - src_alpha) * dst)

pub fn uses_constant(&self) -> bool[src]

Returns true if the state relies on the constant color, which is set independently on a render command encoder.

Trait Implementations

impl Clone for BlendComponent[src]

impl Copy for BlendComponent[src]

impl Debug for BlendComponent[src]

impl Default for BlendComponent[src]

impl<'de> Deserialize<'de> for BlendComponent[src]

impl Eq for BlendComponent[src]

impl Hash for BlendComponent[src]

impl PartialEq<BlendComponent> for BlendComponent[src]

impl Serialize for BlendComponent[src]

impl StructuralEq for BlendComponent[src]

impl StructuralPartialEq for BlendComponent[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> CallHasher for T where
    T: Hash

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast<T> for T

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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, 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> Upcast<T> for T