Enum wgpu_types::BlendOperation
source · [−]#[repr(C)]
pub enum BlendOperation {
Add,
Subtract,
ReverseSubtract,
Min,
Max,
}
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
Src + Dst
Subtract
Src - Dst
ReverseSubtract
Dst - Src
Min
min(Src, Dst)
Max
max(Src, Dst)
Trait Implementations
sourceimpl Clone for BlendOperation
impl Clone for BlendOperation
sourcefn clone(&self) -> BlendOperation
fn clone(&self) -> BlendOperation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BlendOperation
impl Debug for BlendOperation
sourceimpl Default for BlendOperation
impl Default for BlendOperation
sourceimpl Hash for BlendOperation
impl Hash for BlendOperation
sourceimpl PartialEq<BlendOperation> for BlendOperation
impl PartialEq<BlendOperation> for BlendOperation
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more