Struct ash::vk::PipelineColorBlendStateCreateInfo
source · #[repr(C)]pub struct PipelineColorBlendStateCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: PipelineColorBlendStateCreateFlags,
pub logic_op_enable: Bool32,
pub logic_op: LogicOp,
pub attachment_count: u32,
pub p_attachments: *const PipelineColorBlendAttachmentState,
pub blend_constants: [f32; 4],
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: PipelineColorBlendStateCreateFlags
§logic_op_enable: Bool32
§logic_op: LogicOp
§attachment_count: u32
§p_attachments: *const PipelineColorBlendAttachmentState
§blend_constants: [f32; 4]
Implementations§
source§impl PipelineColorBlendStateCreateInfo
impl PipelineColorBlendStateCreateInfo
pub fn builder<'a>() -> PipelineColorBlendStateCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for PipelineColorBlendStateCreateInfo
impl Clone for PipelineColorBlendStateCreateInfo
source§fn clone(&self) -> PipelineColorBlendStateCreateInfo
fn clone(&self) -> PipelineColorBlendStateCreateInfo
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