Enum wgpu::BlendOperation 
source · #[repr(C)]pub enum BlendOperation {
    Add = 0,
    Subtract = 1,
    ReverseSubtract = 2,
    Min = 3,
    Max = 4,
}Expand description
Alpha blend operation.
Alpha blending is very complicated: see the OpenGL or Vulkan spec for more information.
Corresponds to WebGPU GPUBlendOperation.
Variants§
Add = 0
Src + Dst
Subtract = 1
Src - Dst
ReverseSubtract = 2
Dst - Src
Min = 3
min(Src, Dst)
Max = 4
max(Src, Dst)
Trait Implementations§
source§impl Clone for BlendOperation
 
impl Clone for BlendOperation
source§fn clone(&self) -> BlendOperation
 
fn clone(&self) -> BlendOperation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for BlendOperation
 
impl Debug for BlendOperation
source§impl Default for BlendOperation
 
impl Default for BlendOperation
source§fn default() -> BlendOperation
 
fn default() -> BlendOperation
Returns the “default value” for a type. Read more
source§impl Hash for BlendOperation
 
impl Hash for BlendOperation
source§impl PartialEq for BlendOperation
 
impl PartialEq for BlendOperation
source§fn eq(&self, other: &BlendOperation) -> bool
 
fn eq(&self, other: &BlendOperation) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Copy for BlendOperation
impl Eq for BlendOperation
impl StructuralEq for BlendOperation
impl StructuralPartialEq for BlendOperation
Auto Trait Implementations§
impl RefUnwindSafe for BlendOperation
impl Send for BlendOperation
impl Sync for BlendOperation
impl Unpin for BlendOperation
impl UnwindSafe for BlendOperation
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.