Struct wgpu_types::BlendState
source · [−]#[repr(C)]pub struct BlendState {
pub color: BlendComponent,
pub alpha: BlendComponent,
}
Expand description
Describe the blend state of a render pipeline,
within ColorTargetState
.
See the OpenGL or Vulkan spec for more information.
Corresponds to WebGPU GPUBlendState
.
Fields
color: BlendComponent
Color equation.
alpha: BlendComponent
Alpha equation.
Implementations
sourceimpl BlendState
impl BlendState
sourcepub const REPLACE: Self = _
pub const REPLACE: Self = _
Blend mode that does no color blending, just overwrites the output with the contents of the shader.
sourcepub const ALPHA_BLENDING: Self = _
pub const ALPHA_BLENDING: Self = _
Blend mode that does standard alpha blending with non-premultiplied alpha.
sourcepub const PREMULTIPLIED_ALPHA_BLENDING: Self = _
pub const PREMULTIPLIED_ALPHA_BLENDING: Self = _
Blend mode that does standard alpha blending with premultiplied alpha.
Trait Implementations
sourceimpl Clone for BlendState
impl Clone for BlendState
sourcefn clone(&self) -> BlendState
fn clone(&self) -> BlendState
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 BlendState
impl Debug for BlendState
sourceimpl Hash for BlendState
impl Hash for BlendState
sourceimpl PartialEq<BlendState> for BlendState
impl PartialEq<BlendState> for BlendState
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &BlendState) -> bool
fn ne(&self, other: &BlendState) -> bool
This method tests for !=
.
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
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