#[repr(C)]pub struct ColorBlendEquationEXT {
pub src_color_blend_factor: BlendFactor,
pub dst_color_blend_factor: BlendFactor,
pub color_blend_op: BlendOp,
pub src_alpha_blend_factor: BlendFactor,
pub dst_alpha_blend_factor: BlendFactor,
pub alpha_blend_op: BlendOp,
}Expand description
VkColorBlendEquationEXT
Provided by VK_EXT_extended_dynamic_state3.
Fields§
§src_color_blend_factor: BlendFactor§dst_color_blend_factor: BlendFactor§color_blend_op: BlendOp§src_alpha_blend_factor: BlendFactor§dst_alpha_blend_factor: BlendFactor§alpha_blend_op: BlendOpImplementations§
Source§impl ColorBlendEquationEXT
impl ColorBlendEquationEXT
Sourcepub fn builder() -> ColorBlendEquationEXTBuilder
pub fn builder() -> ColorBlendEquationEXTBuilder
Start building this struct.
Trait Implementations§
Source§impl Clone for ColorBlendEquationEXT
impl Clone for ColorBlendEquationEXT
Source§fn clone(&self) -> ColorBlendEquationEXT
fn clone(&self) -> ColorBlendEquationEXT
Returns a duplicate 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 ColorBlendEquationEXT
impl Debug for ColorBlendEquationEXT
Source§impl Default for ColorBlendEquationEXT
impl Default for ColorBlendEquationEXT
impl Copy for ColorBlendEquationEXT
Auto Trait Implementations§
impl Freeze for ColorBlendEquationEXT
impl RefUnwindSafe for ColorBlendEquationEXT
impl Send for ColorBlendEquationEXT
impl Sync for ColorBlendEquationEXT
impl Unpin for ColorBlendEquationEXT
impl UnsafeUnpin for ColorBlendEquationEXT
impl UnwindSafe for ColorBlendEquationEXT
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