Struct lava::vk_attachment_description::VkAttachmentDescription[][src]

pub struct VkAttachmentDescription {
    pub flags: VkAttachmentDescriptionFlags,
    pub format: VkFormat,
    pub samples: VkSampleCountFlags,
    pub load_op: VkAttachmentLoadOp,
    pub store_op: VkAttachmentStoreOp,
    pub stencil_load_op: VkAttachmentLoadOp,
    pub stencil_store_op: VkAttachmentStoreOp,
    pub initial_layout: VkImageLayout,
    pub final_layout: VkImageLayout,
}

Fields

Trait Implementations

impl Debug for VkAttachmentDescription
[src]

Formats the value using the given formatter. Read more

impl Clone for VkAttachmentDescription
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for VkAttachmentDescription
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations