Struct wgpu::BlendState
#[repr(C)]pub struct BlendState {
pub color: BlendComponent,
pub alpha: BlendComponent,
}
Expand description
Describe the blend state of a render pipeline,
within ColorTargetState
.
Corresponds to WebGPU GPUBlendState
.
Fields§
§color: BlendComponent
Color equation.
alpha: BlendComponent
Alpha equation.
Implementations§
§impl BlendState
impl BlendState
pub const REPLACE: BlendState = _
pub const REPLACE: BlendState = _
Blend mode that does no color blending, just overwrites the output with the contents of the shader.
pub const ALPHA_BLENDING: BlendState = _
pub const ALPHA_BLENDING: BlendState = _
Blend mode that does standard alpha blending with non-premultiplied alpha.
pub const PREMULTIPLIED_ALPHA_BLENDING: BlendState = _
pub const PREMULTIPLIED_ALPHA_BLENDING: BlendState = _
Blend mode that does standard alpha blending with premultiplied alpha.
Trait Implementations§
§impl Clone for BlendState
impl Clone for BlendState
§fn clone(&self) -> BlendState
fn clone(&self) -> BlendState
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 BlendState
impl Debug for BlendState
§impl<'de> Deserialize<'de> for BlendState
impl<'de> Deserialize<'de> for BlendState
§fn deserialize<__D>(
__deserializer: __D
) -> Result<BlendState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<BlendState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Hash for BlendState
impl Hash for BlendState
§impl PartialEq for BlendState
impl PartialEq for BlendState
§fn eq(&self, other: &BlendState) -> bool
fn eq(&self, other: &BlendState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for BlendState
impl Serialize for BlendState
§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 BlendState
impl Eq for BlendState
impl StructuralEq for BlendState
impl StructuralPartialEq for BlendState
Auto Trait Implementations§
impl RefUnwindSafe for BlendState
impl Send for BlendState
impl Sync for BlendState
impl Unpin for BlendState
impl UnwindSafe for BlendState
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