Struct ash::vk::RenderPassCreateInfo2
source · #[repr(C)]pub struct RenderPassCreateInfo2 {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: RenderPassCreateFlags,
pub attachment_count: u32,
pub p_attachments: *const AttachmentDescription2,
pub subpass_count: u32,
pub p_subpasses: *const SubpassDescription2,
pub dependency_count: u32,
pub p_dependencies: *const SubpassDependency2,
pub correlated_view_mask_count: u32,
pub p_correlated_view_masks: *const u32,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: RenderPassCreateFlags
§attachment_count: u32
§p_attachments: *const AttachmentDescription2
§subpass_count: u32
§p_subpasses: *const SubpassDescription2
§dependency_count: u32
§p_dependencies: *const SubpassDependency2
Implementations§
source§impl RenderPassCreateInfo2
impl RenderPassCreateInfo2
pub fn builder<'a>() -> RenderPassCreateInfo2Builder<'a>
Trait Implementations§
source§impl Clone for RenderPassCreateInfo2
impl Clone for RenderPassCreateInfo2
source§fn clone(&self) -> RenderPassCreateInfo2
fn clone(&self) -> RenderPassCreateInfo2
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