Struct ash::vk::ImageCreateFlags
source · pub struct ImageCreateFlags(/* private fields */);
Expand description
Implementations§
source§impl ImageCreateFlags
impl ImageCreateFlags
source§impl ImageCreateFlags
impl ImageCreateFlags
sourcepub const SPARSE_BINDING: Self = _
pub const SPARSE_BINDING: Self = _
Image should support sparse backing
sourcepub const SPARSE_RESIDENCY: Self = _
pub const SPARSE_RESIDENCY: Self = _
Image should support sparse backing with partial residency
sourcepub const SPARSE_ALIASED: Self = _
pub const SPARSE_ALIASED: Self = _
Image should support constant data access to physical memory ranges mapped into multiple locations of sparse images
sourcepub const MUTABLE_FORMAT: Self = _
pub const MUTABLE_FORMAT: Self = _
Allows image views to have different format than the base image
sourcepub const CUBE_COMPATIBLE: Self = _
pub const CUBE_COMPATIBLE: Self = _
Allows creating image views with cube type from the created image
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_NV_corner_sampled_image’
pub const CORNER_SAMPLED_NV: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_device_group’
pub const SPLIT_INSTANCE_BIND_REGIONS_KHR: Self = Self::SPLIT_INSTANCE_BIND_REGIONS
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_maintenance1’
pub const TYPE_2D_ARRAY_COMPATIBLE_KHR: Self = Self::TYPE_2D_ARRAY_COMPATIBLE
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_maintenance2’
pub const BLOCK_TEXEL_VIEW_COMPATIBLE_KHR: Self = Self::BLOCK_TEXEL_VIEW_COMPATIBLE
pub const EXTENDED_USAGE_KHR: Self = Self::EXTENDED_USAGE
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_sample_locations’
pub const SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_EXT: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_sampler_ycbcr_conversion’
pub const DISJOINT_KHR: Self = Self::DISJOINT
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_bind_memory2’
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_fragment_density_map’
pub const SUBSAMPLED_EXT: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_extension_259’
pub const RESERVED_19_EXT: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_descriptor_buffer’
pub const DESCRIPTOR_BUFFER_CAPTURE_REPLAY_EXT: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_multisampled_render_to_single_sampled’
pub const MULTISAMPLED_RENDER_TO_SINGLE_SAMPLED_EXT: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_EXT_image_2d_view_of_3d’
sourcepub const TYPE_2D_VIEW_COMPATIBLE_EXT: Self = _
pub const TYPE_2D_VIEW_COMPATIBLE_EXT: Self = _
Image is created with a layout where individual slices are capable of being used as 2D images
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_QCOM_fragment_density_map_offset’
pub const FRAGMENT_DENSITY_MAP_OFFSET_QCOM: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_KHR_extension_516’
pub const RESERVED_20_KHR: Self = _
source§impl ImageCreateFlags
impl ImageCreateFlags
Generated from ‘VK_VERSION_1_1’
pub const ALIAS: Self = _
sourcepub const SPLIT_INSTANCE_BIND_REGIONS: Self = _
pub const SPLIT_INSTANCE_BIND_REGIONS: Self = _
Allows using VkBindImageMemoryDeviceGroupInfo::pSplitInstanceBindRegions when binding memory to the image
sourcepub const TYPE_2D_ARRAY_COMPATIBLE: Self = _
pub const TYPE_2D_ARRAY_COMPATIBLE: Self = _
The 3D image can be viewed as a 2D or 2D array image
pub const BLOCK_TEXEL_VIEW_COMPATIBLE: Self = _
pub const EXTENDED_USAGE: Self = _
pub const DISJOINT: Self = _
Trait Implementations§
source§impl BitAnd for ImageCreateFlags
impl BitAnd for ImageCreateFlags
source§impl BitAndAssign for ImageCreateFlags
impl BitAndAssign for ImageCreateFlags
source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
&=
operation. Read moresource§impl BitOr for ImageCreateFlags
impl BitOr for ImageCreateFlags
source§impl BitOrAssign for ImageCreateFlags
impl BitOrAssign for ImageCreateFlags
source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
|=
operation. Read moresource§impl BitXor for ImageCreateFlags
impl BitXor for ImageCreateFlags
source§impl BitXorAssign for ImageCreateFlags
impl BitXorAssign for ImageCreateFlags
source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
^=
operation. Read moresource§impl Clone for ImageCreateFlags
impl Clone for ImageCreateFlags
source§fn clone(&self) -> ImageCreateFlags
fn clone(&self) -> ImageCreateFlags
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ImageCreateFlags
impl Debug for ImageCreateFlags
source§impl Default for ImageCreateFlags
impl Default for ImageCreateFlags
source§impl Hash for ImageCreateFlags
impl Hash for ImageCreateFlags
source§impl Not for ImageCreateFlags
impl Not for ImageCreateFlags
source§impl Ord for ImageCreateFlags
impl Ord for ImageCreateFlags
source§fn cmp(&self, other: &ImageCreateFlags) -> Ordering
fn cmp(&self, other: &ImageCreateFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for ImageCreateFlags
impl PartialEq for ImageCreateFlags
source§fn eq(&self, other: &ImageCreateFlags) -> bool
fn eq(&self, other: &ImageCreateFlags) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ImageCreateFlags
impl PartialOrd for ImageCreateFlags
source§fn partial_cmp(&self, other: &ImageCreateFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ImageCreateFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more