Struct sierra::PipelineStageFlags[][src]

pub struct PipelineStageFlags { /* fields omitted */ }

Flags to specify set of pipeline stages.

Implementations

impl PipelineStageFlags[src]

pub const TOP_OF_PIPE: PipelineStageFlags[src]

Pseudo-stage that precedes all other stages and doesn’t execute any commands. Using it in first scope of dependency will not cause any waiting, because no operations should be waited upon. Using it in second scope will make all operations in second scope to wait for operations first scope.

pub const DRAW_INDIRECT: PipelineStageFlags[src]

Stage at which indirect draw buffer is read.

pub const VERTEX_INPUT: PipelineStageFlags[src]

Stage at which vertex buffers are read.

pub const VERTEX_SHADER: PipelineStageFlags[src]

Stage at which vertex shader is executed.

pub const EARLY_FRAGMENT_TESTS: PipelineStageFlags[src]

Stage at which early fragment depth and stencil test is performed before fragment shader execution.

pub const FRAGMENT_SHADER: PipelineStageFlags[src]

Stage at which fragment shader is executed.

pub const LATE_FRAGMENT_TESTS: PipelineStageFlags[src]

Stage at which late fragment depth and stencil test is performed after fragment shader execution.

pub const COLOR_ATTACHMENT_OUTPUT: PipelineStageFlags[src]

Stage at which color output of fragment shader is written and multi-sample resolve operation happens.

pub const COMPUTE_SHADER: PipelineStageFlags[src]

Stage at which compute shader is executed.

pub const TRANSFER: PipelineStageFlags[src]

Stage at which transfer commands (Copy, Blit etc) are executed.

pub const BOTTOM_OF_PIPE: PipelineStageFlags[src]

Pseudo-stage that follows all other stages and doesn’t execute any commands. Using it in first scope will make operations in second scope to wait for all operations first scope. Using it in second scope of dependency will not cause any waiting, because no operations should be waited upon.

pub const HOST: PipelineStageFlags[src]

Pseudo-stage at which HOST access to resources is performed. It has very limited use because command submission creates memory dependency between host access and device operations.

pub const ALL_GRAPHICS: PipelineStageFlags[src]

Flag that can be used instead of specifying all graphics stages including those from enabled extensions.

pub const ALL_COMMANDS: PipelineStageFlags[src]

Flag that can be used instead of specifying all compute stages including those from enabled extensions.

pub const RAY_TRACING_SHADER: PipelineStageFlags[src]

Stage at which ray-tracing pipeline is executed.

pub const ACCELERATION_STRUCTURE_BUILD: PipelineStageFlags[src]

Stage at which acceleration structures are built.

pub const fn empty() -> PipelineStageFlags[src]

Returns an empty set of flags

pub const fn all() -> PipelineStageFlags[src]

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<PipelineStageFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> PipelineStageFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> PipelineStageFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

pub const fn is_empty(&self) -> bool[src]

Returns true if no flags are currently stored.

pub const fn is_all(&self) -> bool[src]

Returns true if all flags are currently set.

pub const fn intersects(&self, other: PipelineStageFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: PipelineStageFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: PipelineStageFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: PipelineStageFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: PipelineStageFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: PipelineStageFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for PipelineStageFlags[src]

impl BitAnd<PipelineStageFlags> for PipelineStageFlags[src]

type Output = PipelineStageFlags

The resulting type after applying the & operator.

fn bitand(self, other: PipelineStageFlags) -> PipelineStageFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<PipelineStageFlags> for PipelineStageFlags[src]

fn bitand_assign(&mut self, other: PipelineStageFlags)[src]

Disables all flags disabled in the set.

impl BitOr<PipelineStageFlags> for PipelineStageFlags[src]

type Output = PipelineStageFlags

The resulting type after applying the | operator.

fn bitor(self, other: PipelineStageFlags) -> PipelineStageFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<PipelineStageFlags> for PipelineStageFlags[src]

fn bitor_assign(&mut self, other: PipelineStageFlags)[src]

Adds the set of flags.

impl BitXor<PipelineStageFlags> for PipelineStageFlags[src]

type Output = PipelineStageFlags

The resulting type after applying the ^ operator.

fn bitxor(self, other: PipelineStageFlags) -> PipelineStageFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<PipelineStageFlags> for PipelineStageFlags[src]

fn bitxor_assign(&mut self, other: PipelineStageFlags)[src]

Toggles the set of flags.

impl Clone for PipelineStageFlags[src]

impl Copy for PipelineStageFlags[src]

impl Debug for PipelineStageFlags[src]

impl Eq for PipelineStageFlags[src]

impl Extend<PipelineStageFlags> for PipelineStageFlags[src]

impl FromIterator<PipelineStageFlags> for PipelineStageFlags[src]

impl Hash for PipelineStageFlags[src]

impl LowerHex for PipelineStageFlags[src]

impl Not for PipelineStageFlags[src]

type Output = PipelineStageFlags

The resulting type after applying the ! operator.

fn not(self) -> PipelineStageFlags[src]

Returns the complement of this set of flags.

impl Octal 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]

impl Sub<PipelineStageFlags> for PipelineStageFlags[src]

type Output = PipelineStageFlags

The resulting type after applying the - operator.

fn sub(self, other: PipelineStageFlags) -> PipelineStageFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<PipelineStageFlags> for PipelineStageFlags[src]

fn sub_assign(&mut self, other: PipelineStageFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for PipelineStageFlags[src]

Auto Trait Implementations

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> Instrument 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.