Home
last modified time | relevance | path

Searched defs:FormatFeatures (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/vulkano/src/
Dformat.rs697 pub struct FormatFeatures { struct
698 pub sampled_image: bool,
699 pub storage_image: bool,
700 pub storage_image_atomic: bool,
701 pub uniform_texel_buffer: bool,
702 pub storage_texel_buffer: bool,
726 impl From<ash::vk::FormatFeatureFlags> for FormatFeatures { argument
729 fn from(val: ash::vk::FormatFeatureFlags) -> FormatFeatures { in from()
/external/rust/crates/vulkano/src/image/
Dsys.rs876 pub fn format_features(&self) -> FormatFeatures { in format_features()