Struct lava::VkAccessFlags[][src]

pub struct VkAccessFlags {
    pub indirect_command_read: bool,
    pub index_read: bool,
    pub vertex_attribute_read: bool,
    pub uniform_read: bool,
    pub input_attachment_read: bool,
    pub shader_read: bool,
    pub shader_write: bool,
    pub color_attachment_read: bool,
    pub color_attachment_write: bool,
    pub depth_stencil_attachment_read: bool,
    pub depth_stencil_attachment_write: bool,
    pub transfer_read: bool,
    pub transfer_write: bool,
    pub host_read: bool,
    pub host_write: bool,
    pub memory_read: bool,
    pub memory_write: bool,
    pub conditional_rendering_read_ext: bool,
    pub command_process_read_nvx: bool,
    pub command_process_write_nvx: bool,
    pub color_attachment_read_noncoherent_ext: bool,
}

Fields

Methods

impl VkAccessFlags
[src]

Trait Implementations

impl Debug for VkAccessFlags
[src]

Formats the value using the given formatter. Read more

impl Clone for VkAccessFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for VkAccessFlags
[src]

impl Default for VkAccessFlags
[src]

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

Auto Trait Implementations