Struct wgpu_types::BlendState [−][src]
#[repr(C)]pub struct BlendState { pub color: BlendComponent, pub alpha: BlendComponent, }
Expand description
Describe the blend state of a render pipeline.
See the OpenGL or Vulkan spec for more information.
Fields
color: BlendComponentColor equation.
alpha: BlendComponentAlpha equation.
Implementations
Blend mode that does no color blending, just overwrites the output with the contents of the shader.
Blend mode that does standard alpha blending with non-premultiplied alpha.
Blend mode that does standard alpha blending with premultiplied alpha.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for BlendStateimpl Send for BlendStateimpl Sync for BlendStateimpl Unpin for BlendStateimpl UnwindSafe for BlendStateBlanket Implementations
Mutably borrows from an owned value. Read more