#[repr(C)]pub struct PipelineRenderingCreateInfo {
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,
}Expand description
VkPipelineRenderingCreateInfo
Provided by VK_GRAPHICS_VERSION_1_3.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PIPELINE_RENDERING_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
view_mask: u32§color_attachment_count: u32Length of p_color_attachment_formats.
p_color_attachment_formats: *const Format§depth_attachment_format: Format§stencil_attachment_format: FormatImplementations§
Source§impl PipelineRenderingCreateInfo
impl PipelineRenderingCreateInfo
Sourcepub fn builder<'a>() -> PipelineRenderingCreateInfoBuilder<'a>
pub fn builder<'a>() -> PipelineRenderingCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PipelineRenderingCreateInfo
impl Clone for PipelineRenderingCreateInfo
Source§fn clone(&self) -> PipelineRenderingCreateInfo
fn clone(&self) -> PipelineRenderingCreateInfo
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 PipelineRenderingCreateInfo
impl Debug for PipelineRenderingCreateInfo
impl Copy for PipelineRenderingCreateInfo
impl ExtendsGraphicsPipelineCreateInfo for PipelineRenderingCreateInfo
Auto Trait Implementations§
impl Freeze for PipelineRenderingCreateInfo
impl RefUnwindSafe for PipelineRenderingCreateInfo
impl !Send for PipelineRenderingCreateInfo
impl !Sync for PipelineRenderingCreateInfo
impl Unpin for PipelineRenderingCreateInfo
impl UnsafeUnpin for PipelineRenderingCreateInfo
impl UnwindSafe for PipelineRenderingCreateInfo
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