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§
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<'de> Deserialize<'de> for BlendOperation
impl<'de> Deserialize<'de> for BlendOperation
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for BlendOperation
impl Hash for BlendOperation
source§impl PartialEq<BlendOperation> for BlendOperation
impl PartialEq<BlendOperation> 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 ==
.