Struct vk_sys::AttachmentDescription [] [src]

pub struct AttachmentDescription {
    pub flags: AttachmentDescriptionFlags,
    pub format: Format,
    pub samples: SampleCountFlagBits,
    pub loadOp: AttachmentLoadOp,
    pub storeOp: AttachmentStoreOp,
    pub stencilLoadOp: AttachmentLoadOp,
    pub stencilStoreOp: AttachmentStoreOp,
    pub initialLayout: ImageLayout,
    pub finalLayout: ImageLayout,
}

Fields

flags: AttachmentDescriptionFlags format: Format samples: SampleCountFlagBits loadOp: AttachmentLoadOp storeOp: AttachmentStoreOp stencilLoadOp: AttachmentLoadOp stencilStoreOp: AttachmentStoreOp initialLayout: ImageLayout finalLayout: ImageLayout