Struct vulkano::sync::PipelineStages [] [src]

pub struct PipelineStages {
    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,
}

Fields

Methods

impl PipelineStages
[src]

Builds an PipelineStages struct with none of the stages set.

Trait Implementations

impl From<ShaderStages> for PipelineStages
[src]

Performs the conversion.

impl Debug for PipelineStages
[src]

Formats the value using the given formatter.

impl Copy for PipelineStages
[src]

impl Clone for PipelineStages
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PipelineStages
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for PipelineStages
[src]

impl BitOr for PipelineStages
[src]

The resulting type after applying the | operator

The method for the | operator

impl BitOrAssign for PipelineStages
[src]

The method for the |= operator