[][src]Struct bedrock::PipelineStageFlags

pub struct PipelineStageFlags(pub VkPipelineStageFlags);

Bitmask specifying pipeline stages

Methods

impl PipelineStageFlags[src]

pub const TOP_OF_PIPE: Self[src]

The stage of the pipeline where any commands are initially received by the queue

pub const DRAW_INDIRECT: Self[src]

The stage of the pipeline where Draw/DispatchIndirect data structures are consumed

pub const VERTEX_INPUT: Self[src]

The stage of the pipeline where vertex and index buffers are consumed

pub const VERTEX_SHADER: Self[src]

The vertex shader stage

pub const TESSELLATION_CONTROL_SHADER: Self[src]

The tessellation control shader stage

pub const TESSELLATION_EVALUATION_SHADER: Self[src]

The tessellation evaluation shader stage

pub const GEOMETRY_SHADER: Self[src]

The geometry shader stage

pub const FRAGMENT_SHADER: Self[src]

The fragment shader stage

pub const EARLY_FRAGMENT_TESTS: Self[src]

The stage of the pipeline where early fragment tests (depth and stencil tests before fragment shading) are performed

pub const LATE_FRAGMENT_TESTS: Self[src]

The stage of the pipeline where late fragment tests (depth and stencil tests after fragment shading) are performed

pub const COLOR_ATTACHMENT_OUTPUT: Self[src]

The stage of the pipeline after blending where the final color values are output from the pipeline

pub const TRANSFER: Self[src]

The execution of copy commands

pub const COMPUTE_SHADER: Self[src]

The execution of a compute shader

pub const BOTTOM_OF_PIPE: Self[src]

The final stage in the pipeline where operations generated by all commands complete execution

pub const HOST: Self[src]

A pseudo-stage indicating execution on the host of reads/writes of device memory

pub const ALL_GRAPHICS: Self[src]

The execution of all graphics pipeline stages

pub const ALL_COMMANDS: Self[src]

Equivalent to the logical OR of every other pipeline stage flag that is supported on the quue it is used with

pub fn top_of_pipe(self) -> Self[src]

The stage of the pipeline where any commands are initially received by the queue

pub fn draw_indirect(self) -> Self[src]

The stage of the pipeline where Draw/DispatchIndirect data structures are consumed

pub fn vertex_input(self) -> Self[src]

The stage of the pipeline where vertex and index buffers are consumed

pub fn vertex_shader(self) -> Self[src]

The vertex shader stage

pub fn tessellation_control_shader(self) -> Self[src]

The tessellation control shader stage

pub fn tessellation_evaluation_shader(self) -> Self[src]

The tessellation evaluation shader stage

pub fn geometry_shader(self) -> Self[src]

The geometry shader stage

pub fn fragment_shader(self) -> Self[src]

The fragment shader stage

pub fn early_fragment_tests(self) -> Self[src]

The stage of the pipeline where early fragment tests (depth and stencil tests before fragment shading) are performed

pub fn late_fragment_tests(self) -> Self[src]

The stage of the pipeline where late fragment tests (depth and stencil tests after fragment shading) are performed

pub fn color_attachment_output(self) -> Self[src]

The stage of the pipeline after blending where the final color values are output from the pipeline

pub fn transfer(self) -> Self[src]

The execution of copy commands

pub fn compute_shader(self) -> Self[src]

The execution of a compute shader

pub fn bottom_of_pipe(self) -> Self[src]

The final stage in the pipeline where operations generated by all commands complete execution

pub fn host(self) -> Self[src]

A pseudo-stage indicating execution on the host of reads/writes of device memory

pub fn all_graphics(self) -> Self[src]

The execution of all graphics pipeline stages

pub fn all_commands(self) -> Self[src]

Equivalent to the logical OR of every other pipeline stage flag that is supported on the quue it is used with

Trait Implementations

impl Clone for PipelineStageFlags[src]

impl Copy for PipelineStageFlags[src]

impl Debug for PipelineStageFlags[src]

impl Eq for PipelineStageFlags[src]

impl Ord for PipelineStageFlags[src]

impl PartialEq<PipelineStageFlags> for PipelineStageFlags[src]

impl PartialOrd<PipelineStageFlags> for PipelineStageFlags[src]

impl StructuralEq for PipelineStageFlags[src]

impl StructuralPartialEq for PipelineStageFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for PipelineStageFlags

impl Send for PipelineStageFlags

impl Sync for PipelineStageFlags

impl Unpin for PipelineStageFlags

impl UnwindSafe for PipelineStageFlags

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.