[][src]Struct ash::vk::FormatFeatureFlags

#[repr(transparent)]pub struct FormatFeatureFlags(_);

Implementations

impl FormatFeatureFlags[src]

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

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

pub const fn from_raw(x: Flags) -> Self[src]

pub const fn as_raw(self) -> Flags[src]

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

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

pub fn intersects(self, other: FormatFeatureFlags) -> bool[src]

pub fn contains(self, other: FormatFeatureFlags) -> bool[src]

Returns whether other is a subset of self

impl FormatFeatureFlags[src]

pub const SAMPLED_IMAGE: Self[src]

Format can be used for sampled images (SAMPLED_IMAGE and COMBINED_IMAGE_SAMPLER descriptor types)

pub const STORAGE_IMAGE: Self[src]

Format can be used for storage images (STORAGE_IMAGE descriptor type)

pub const STORAGE_IMAGE_ATOMIC: Self[src]

Format supports atomic operations in case it is used for storage images

pub const UNIFORM_TEXEL_BUFFER: Self[src]

Format can be used for uniform texel buffers (TBOs)

pub const STORAGE_TEXEL_BUFFER: Self[src]

Format can be used for storage texel buffers (IBOs)

pub const STORAGE_TEXEL_BUFFER_ATOMIC: Self[src]

Format supports atomic operations in case it is used for storage texel buffers

pub const VERTEX_BUFFER: Self[src]

Format can be used for vertex buffers (VBOs)

pub const COLOR_ATTACHMENT: Self[src]

Format can be used for color attachment images

pub const COLOR_ATTACHMENT_BLEND: Self[src]

Format supports blending in case it is used for color attachment images

pub const DEPTH_STENCIL_ATTACHMENT: Self[src]

Format can be used for depth/stencil attachment images

pub const BLIT_SRC: Self[src]

Format can be used as the source image of blits with vkCmdBlitImage

pub const BLIT_DST: Self[src]

Format can be used as the destination image of blits with vkCmdBlitImage

pub const SAMPLED_IMAGE_FILTER_LINEAR: Self[src]

Format can be filtered with VK_FILTER_LINEAR when being sampled

impl FormatFeatureFlags[src]

Generated from 'VK_IMG_filter_cubic'

impl FormatFeatureFlags[src]

Generated from 'VK_AMD_extension_24'

pub const RESERVED_27_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_AMD_extension_24'

pub const RESERVED_28_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_AMD_extension_25'

pub const RESERVED_25_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_AMD_extension_25'

pub const RESERVED_26_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_maintenance1'

pub const TRANSFER_SRC_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_maintenance1'

pub const TRANSFER_DST_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_EXT_sampler_filter_minmax'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_ray_tracing'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

pub const DISJOINT_KHR: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_KHR_sampler_ycbcr_conversion'

impl FormatFeatureFlags[src]

Generated from 'VK_EXT_filter_cubic'

impl FormatFeatureFlags[src]

Generated from 'VK_EXT_fragment_density_map'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

pub const TRANSFER_SRC: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

pub const TRANSFER_DST: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

pub const DISJOINT: Self[src]

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_1'

impl FormatFeatureFlags[src]

Generated from 'VK_VERSION_1_2'

Trait Implementations

impl BitAnd<FormatFeatureFlags> for FormatFeatureFlags[src]

type Output = FormatFeatureFlags

The resulting type after applying the & operator.

impl BitAndAssign<FormatFeatureFlags> for FormatFeatureFlags[src]

impl BitOr<FormatFeatureFlags> for FormatFeatureFlags[src]

type Output = FormatFeatureFlags

The resulting type after applying the | operator.

impl BitOrAssign<FormatFeatureFlags> for FormatFeatureFlags[src]

impl BitXor<FormatFeatureFlags> for FormatFeatureFlags[src]

type Output = FormatFeatureFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<FormatFeatureFlags> for FormatFeatureFlags[src]

impl Clone for FormatFeatureFlags[src]

impl Copy for FormatFeatureFlags[src]

impl Debug for FormatFeatureFlags[src]

impl Default for FormatFeatureFlags[src]

impl Eq for FormatFeatureFlags[src]

impl Hash for FormatFeatureFlags[src]

impl Not for FormatFeatureFlags[src]

type Output = FormatFeatureFlags

The resulting type after applying the ! operator.

impl Ord for FormatFeatureFlags[src]

impl PartialEq<FormatFeatureFlags> for FormatFeatureFlags[src]

impl PartialOrd<FormatFeatureFlags> for FormatFeatureFlags[src]

impl StructuralEq for FormatFeatureFlags[src]

impl StructuralPartialEq for FormatFeatureFlags[src]

impl Sub<FormatFeatureFlags> for FormatFeatureFlags[src]

type Output = FormatFeatureFlags

The resulting type after applying the - operator.

impl SubAssign<FormatFeatureFlags> for FormatFeatureFlags[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, 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.