Struct ash::vk::AttachmentDescription
source · #[repr(C)]pub struct AttachmentDescription {
pub flags: AttachmentDescriptionFlags,
pub format: Format,
pub samples: SampleCountFlags,
pub load_op: AttachmentLoadOp,
pub store_op: AttachmentStoreOp,
pub stencil_load_op: AttachmentLoadOp,
pub stencil_store_op: AttachmentStoreOp,
pub initial_layout: ImageLayout,
pub final_layout: ImageLayout,
}
Expand description
Fields§
§flags: AttachmentDescriptionFlags
§format: Format
§samples: SampleCountFlags
§load_op: AttachmentLoadOp
§store_op: AttachmentStoreOp
§stencil_load_op: AttachmentLoadOp
§stencil_store_op: AttachmentStoreOp
§initial_layout: ImageLayout
§final_layout: ImageLayout
Implementations§
source§impl AttachmentDescription
impl AttachmentDescription
pub fn builder<'a>() -> AttachmentDescriptionBuilder<'a>
Trait Implementations§
source§impl Clone for AttachmentDescription
impl Clone for AttachmentDescription
source§fn clone(&self) -> AttachmentDescription
fn clone(&self) -> AttachmentDescription
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 AttachmentDescription
impl Debug for AttachmentDescription
source§impl Default for AttachmentDescription
impl Default for AttachmentDescription
source§fn default() -> AttachmentDescription
fn default() -> AttachmentDescription
Returns the “default value” for a type. Read more