Enum wgpu::BlendOperation
#[repr(C)]pub enum BlendOperation {
Add = 0,
Subtract = 1,
ReverseSubtract = 2,
Min = 3,
Max = 4,
}
Expand description
Alpha blend operation.
Corresponds to WebGPU GPUBlendOperation
.
For further details on how the blend operations are applied, see the analogous functionality in OpenGL: https://www.khronos.org/opengl/wiki/Blending#Blend_Equations.
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§
§impl Clone for BlendOperation
impl Clone for BlendOperation
§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 more§impl Debug for BlendOperation
impl Debug for BlendOperation
§impl Default for BlendOperation
impl Default for BlendOperation
§fn default() -> BlendOperation
fn default() -> BlendOperation
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for BlendOperation
impl<'de> Deserialize<'de> for BlendOperation
§fn deserialize<__D>(
__deserializer: __D
) -> Result<BlendOperation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BlendOperation, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Hash for BlendOperation
impl Hash for BlendOperation
§impl PartialEq for BlendOperation
impl PartialEq for BlendOperation
§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 Serialize for BlendOperation
impl Serialize for BlendOperation
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more