Struct lava::VkPipelineStageFlags[][src]

pub struct VkPipelineStageFlags {
    pub top_of_pipe: bool,
    pub draw_indirect: bool,
    pub vertex_input: bool,
    pub vertex_shader: bool,
    pub tessellation_control_shader: bool,
    pub tessellation_evaluation_shader: bool,
    pub geometry_shader: bool,
    pub fragment_shader: bool,
    pub early_fragment_tests: bool,
    pub late_fragment_tests: bool,
    pub color_attachment_output: bool,
    pub compute_shader: bool,
    pub transfer: bool,
    pub bottom_of_pipe: bool,
    pub host: bool,
    pub all_graphics: bool,
    pub all_commands: bool,
    pub conditional_rendering_ext: bool,
    pub command_process_nvx: bool,
}

Fields

Methods

impl VkPipelineStageFlags
[src]

Trait Implementations

impl Debug for VkPipelineStageFlags
[src]

Formats the value using the given formatter. Read more

impl Clone for VkPipelineStageFlags
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for VkPipelineStageFlags
[src]

impl Default for VkPipelineStageFlags
[src]

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

Auto Trait Implementations