Struct sierra::AccessFlags[][src]

pub struct AccessFlags { /* fields omitted */ }

Flags for access types.

Implementations

impl AccessFlags[src]

pub const INDIRECT_COMMAND_READ: AccessFlags[src]

Read access to indirect command data read as part of an indirect build, trace, drawing or dispatch command.

pub const INDEX_READ: AccessFlags[src]

Read access to an index buffer as part of an indexed drawing command

pub const VERTEX_ATTRIBUTE_READ: AccessFlags[src]

Read access to a vertex buffer as part of a drawing command

pub const UNIFORM_READ: AccessFlags[src]

Read access to a uniform buffer..

pub const INPUT_ATTACHMENT_READ: AccessFlags[src]

Read access to an input attachment within a render pass during fragment shading.

pub const SHADER_READ: AccessFlags[src]

Read access to a storage buffer, physical storage buffer, shader binding table, uniform texel buffer, storage texel buffer, sampled image, or storage image.

pub const SHADER_WRITE: AccessFlags[src]

Write access to a storage buffer, physical storage buffer, storage texel buffer, or storage image.

pub const COLOR_ATTACHMENT_READ: AccessFlags[src]

Read access to a color attachment, such as via blending, logic operations, or via certain subpass load operations.
It does not include advanced blend operations.

pub const COLOR_ATTACHMENT_WRITE: AccessFlags[src]

Write access to a color, resolve, or depth/stencil resolve attachment during a render pass or via certain subpass load and store operations.

pub const DEPTH_STENCIL_ATTACHMENT_READ: AccessFlags[src]

Read access to a depth/stencil attachment, via depth or stencil operations or via certain subpass load operations.

pub const DEPTH_STENCIL_ATTACHMENT_WRITE: AccessFlags[src]

Write access to a depth/stencil attachment, via depth or stencil operations or via certain subpass load and store operations.

pub const TRANSFER_READ: AccessFlags[src]

Read access to an image or buffer in a copy operation.

pub const TRANSFER_WRITE: AccessFlags[src]

Write access to an image or buffer in a clear or copy operation.

pub const HOST_READ: AccessFlags[src]

Read access by a host operation.

pub const HOST_WRITE: AccessFlags[src]

Write access by a host operation.

pub const MEMORY_READ: AccessFlags[src]

All read accesses.

pub const MEMORY_WRITE: AccessFlags[src]

All write accesses.

pub const CONDITIONAL_RENDERING_READ: AccessFlags[src]

Read access to a predicate as part of conditional rendering.

pub const COLOR_ATTACHMENT_READ_NONCOHERENT: AccessFlags[src]

Similar to [COLOR_ATTACHMENT_READ], but also includes advanced blend operations.

pub const ACCELERATION_STRUCTURE_READ: AccessFlags[src]

Read access to an acceleration structure as part of a trace, build, or copy command, or to an acceleration structure scratch buffer

pub const ACCELERATION_STRUCTURE_WRITE: AccessFlags[src]

Write access to an acceleration structure or acceleration structure scratch buffer as part of a build or copy command.

pub const FRAGMENT_DENSITY_MAP_READ: AccessFlags[src]

Read access to a fragment density map attachment during dynamic fragment density map operations.

pub const FRAGMENT_SHADING_RATE_ATTACHMENT_READ: AccessFlags[src]

Read access to a fragment shading rate attachment or shading rate image during rasterization.

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

Returns an empty set of flags

pub const fn all() -> AccessFlags[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<AccessFlags>[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) -> AccessFlags[src]

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

pub const unsafe fn from_bits_unchecked(bits: u32) -> AccessFlags[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: AccessFlags) -> bool[src]

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

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

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

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

Inserts the specified flags in-place.

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

Removes the specified flags in-place.

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

Toggles the specified flags in-place.

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

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

impl AccessFlags[src]

pub fn is_readonly(self) -> bool[src]

Trait Implementations

impl Binary for AccessFlags[src]

impl BitAnd<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the & operator.

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

Returns the intersection between the two sets of flags.

impl BitAndAssign<AccessFlags> for AccessFlags[src]

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

Disables all flags disabled in the set.

impl BitOr<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the | operator.

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

Returns the union of the two sets of flags.

impl BitOrAssign<AccessFlags> for AccessFlags[src]

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

Adds the set of flags.

impl BitXor<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the ^ operator.

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

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

impl BitXorAssign<AccessFlags> for AccessFlags[src]

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

Toggles the set of flags.

impl Clone for AccessFlags[src]

impl Copy for AccessFlags[src]

impl Debug for AccessFlags[src]

impl Eq for AccessFlags[src]

impl Extend<AccessFlags> for AccessFlags[src]

impl FromIterator<AccessFlags> for AccessFlags[src]

impl Hash for AccessFlags[src]

impl LowerHex for AccessFlags[src]

impl Not for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the ! operator.

fn not(self) -> AccessFlags[src]

Returns the complement of this set of flags.

impl Octal for AccessFlags[src]

impl Ord for AccessFlags[src]

impl PartialEq<AccessFlags> for AccessFlags[src]

impl PartialOrd<AccessFlags> for AccessFlags[src]

impl StructuralEq for AccessFlags[src]

impl StructuralPartialEq for AccessFlags[src]

impl Sub<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the - operator.

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

Returns the set difference of the two sets of flags.

impl SubAssign<AccessFlags> for AccessFlags[src]

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

Disables all flags enabled in the set.

impl UpperHex for AccessFlags[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.