pub type PipelineRenderingCreateInfoKHR<'a> = PipelineRenderingCreateInfo<'a>;
Aliased Type§
struct PipelineRenderingCreateInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub view_mask: u32,
pub color_attachment_count: u32,
pub p_color_attachment_formats: *const Format,
pub depth_attachment_format: Format,
pub stencil_attachment_format: Format,
pub _marker: PhantomData<&'a ()>,
}
Fields§
§s_type: StructureType
§p_next: *const c_void
§view_mask: u32
§color_attachment_count: u32
§p_color_attachment_formats: *const Format
§depth_attachment_format: Format
§stencil_attachment_format: Format
§_marker: PhantomData<&'a ()>
Implementations
Source§impl<'a> PipelineRenderingCreateInfo<'a>
impl<'a> PipelineRenderingCreateInfo<'a>
pub fn view_mask(self, view_mask: u32) -> Self
pub fn color_attachment_formats( self, color_attachment_formats: &'a [Format], ) -> Self
pub fn depth_attachment_format(self, depth_attachment_format: Format) -> Self
pub fn stencil_attachment_format( self, stencil_attachment_format: Format, ) -> Self
Trait Implementations
Source§impl<'a> Clone for PipelineRenderingCreateInfo<'a>
impl<'a> Clone for PipelineRenderingCreateInfo<'a>
Source§fn clone(&self) -> PipelineRenderingCreateInfo<'a>
fn clone(&self) -> PipelineRenderingCreateInfo<'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 more