[][src]Struct vulkano::format::FormatFeatures

pub struct FormatFeatures {
    pub sampled_image: bool,
    pub storage_image: bool,
    pub storage_image_atomic: bool,
    pub uniform_texel_buffer: bool,
    pub storage_texel_buffer: bool,
    pub storage_texel_buffer_atomic: bool,
    pub vertex_buffer: bool,
    pub color_attachment: bool,
    pub color_attachment_blend: bool,
    pub depth_stencil_attachment: bool,
    pub blit_src: bool,
    pub blit_dst: bool,
    pub sampled_image_filter_linear: bool,
    pub transfer_src: bool,
    pub transfer_dst: bool,
    pub midpoint_chroma_samples: bool,
    pub sampled_image_ycbcr_conversion_linear_filter: bool,
    pub sampled_image_ycbcr_conversion_separate_reconstruction_filter: bool,
    pub sampled_image_ycbcr_conversion_chroma_reconstruction_explicit: bool,
    pub sampled_image_ycbcr_conversion_chroma_reconstruction_explicit_forceable: bool,
    pub disjoint: bool,
    pub cosited_chroma_samples: bool,
    pub sampled_image_filter_minmax: bool,
    pub img_sampled_image_filter_cubic: bool,
    pub khr_acceleration_structure_vertex_buffer: bool,
    pub ext_fragment_density_map: bool,
}

The features supported by images with a particular format.

Fields

sampled_image: boolstorage_image: boolstorage_image_atomic: booluniform_texel_buffer: boolstorage_texel_buffer: boolstorage_texel_buffer_atomic: boolvertex_buffer: boolcolor_attachment: boolcolor_attachment_blend: booldepth_stencil_attachment: boolblit_src: boolblit_dst: boolsampled_image_filter_linear: booltransfer_src: booltransfer_dst: boolmidpoint_chroma_samples: boolsampled_image_ycbcr_conversion_linear_filter: boolsampled_image_ycbcr_conversion_separate_reconstruction_filter: boolsampled_image_ycbcr_conversion_chroma_reconstruction_explicit: boolsampled_image_ycbcr_conversion_chroma_reconstruction_explicit_forceable: booldisjoint: boolcosited_chroma_samples: boolsampled_image_filter_minmax: boolimg_sampled_image_filter_cubic: boolkhr_acceleration_structure_vertex_buffer: boolext_fragment_density_map: bool

Trait Implementations

impl Clone for FormatFeatures[src]

impl Debug for FormatFeatures[src]

impl Default for FormatFeatures[src]

impl Eq for FormatFeatures[src]

impl Hash for FormatFeatures[src]

impl PartialEq<FormatFeatures> for FormatFeatures[src]

impl StructuralEq for FormatFeatures[src]

impl StructuralPartialEq for FormatFeatures[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> Content for T[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.