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 moresource§impl Debug for SubpassDescription
impl Debug for SubpassDescription
source§impl Default for SubpassDescription
impl Default for SubpassDescription
impl Copy for SubpassDescription
Auto Trait Implementations§
impl Freeze for SubpassDescription
impl RefUnwindSafe for SubpassDescription
impl !Send for SubpassDescription
impl !Sync for SubpassDescription
impl Unpin for SubpassDescription
impl UnwindSafe for SubpassDescription
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