#[repr(C)]pub struct PipelineCoverageModulationStateCreateInfoNV<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: PipelineCoverageModulationStateCreateFlagsNV,
pub coverage_modulation_mode: CoverageModulationModeNV,
pub coverage_modulation_table_enable: Bool32,
pub coverage_modulation_table_count: u32,
pub p_coverage_modulation_table: *const f32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: PipelineCoverageModulationStateCreateFlagsNV
§coverage_modulation_mode: CoverageModulationModeNV
§coverage_modulation_table_enable: Bool32
§coverage_modulation_table_count: u32
§p_coverage_modulation_table: *const f32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> PipelineCoverageModulationStateCreateInfoNV<'a>
pub fn flags(self, flags: PipelineCoverageModulationStateCreateFlagsNV) -> Self
pub fn coverage_modulation_mode( self, coverage_modulation_mode: CoverageModulationModeNV, ) -> Self
pub fn coverage_modulation_table_enable( self, coverage_modulation_table_enable: bool, ) -> Self
pub fn coverage_modulation_table( self, coverage_modulation_table: &'a [f32], ) -> Self
Trait Implementations§
source§impl<'a> Clone for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> Clone for PipelineCoverageModulationStateCreateInfoNV<'a>
source§fn clone(&self) -> PipelineCoverageModulationStateCreateInfoNV<'a>
fn clone(&self) -> PipelineCoverageModulationStateCreateInfoNV<'a>
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 moresource§impl<'a> Debug for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> Debug for PipelineCoverageModulationStateCreateInfoNV<'a>
source§impl<'a> TaggedStructure for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> TaggedStructure for PipelineCoverageModulationStateCreateInfoNV<'a>
const STRUCTURE_TYPE: StructureType = StructureType::PIPELINE_COVERAGE_MODULATION_STATE_CREATE_INFO_NV
impl<'a> Copy for PipelineCoverageModulationStateCreateInfoNV<'a>
impl ExtendsPipelineMultisampleStateCreateInfo for PipelineCoverageModulationStateCreateInfoNV<'_>
impl Send for PipelineCoverageModulationStateCreateInfoNV<'_>
impl Sync for PipelineCoverageModulationStateCreateInfoNV<'_>
Auto Trait Implementations§
impl<'a> Freeze for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> RefUnwindSafe for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> Unpin for PipelineCoverageModulationStateCreateInfoNV<'a>
impl<'a> UnwindSafe for PipelineCoverageModulationStateCreateInfoNV<'a>
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