Struct ash::vk::SubpassDescription
source · #[repr(C)]pub struct SubpassDescription {
pub flags: SubpassDescriptionFlags,
pub pipeline_bind_point: PipelineBindPoint,
pub input_attachment_count: u32,
pub p_input_attachments: *const AttachmentReference,
pub color_attachment_count: u32,
pub p_color_attachments: *const AttachmentReference,
pub p_resolve_attachments: *const AttachmentReference,
pub p_depth_stencil_attachment: *const AttachmentReference,
pub preserve_attachment_count: u32,
pub p_preserve_attachments: *const u32,
}
Expand description
Fields§
§flags: SubpassDescriptionFlags
§pipeline_bind_point: PipelineBindPoint
§input_attachment_count: u32
§p_input_attachments: *const AttachmentReference
§color_attachment_count: u32
§p_color_attachments: *const AttachmentReference
§p_resolve_attachments: *const AttachmentReference
§p_depth_stencil_attachment: *const AttachmentReference
§preserve_attachment_count: u32
§p_preserve_attachments: *const u32
Implementations§
source§impl SubpassDescription
impl SubpassDescription
pub fn builder<'a>() -> SubpassDescriptionBuilder<'a>
Trait Implementations§
source§impl Clone for SubpassDescription
impl Clone for SubpassDescription
source§fn clone(&self) -> SubpassDescription
fn clone(&self) -> SubpassDescription
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