Struct ash::vk::ImageFormatPropertiesBuilder
source · #[repr(transparent)]pub struct ImageFormatPropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ImageFormatPropertiesBuilder<'a>
impl<'a> ImageFormatPropertiesBuilder<'a>
pub fn max_extent(self, max_extent: Extent3D) -> Self
pub fn max_mip_levels(self, max_mip_levels: u32) -> Self
pub fn max_array_layers(self, max_array_layers: u32) -> Self
pub fn sample_counts(self, sample_counts: SampleCountFlags) -> Self
pub fn max_resource_size(self, max_resource_size: DeviceSize) -> Self
sourcepub fn build(self) -> ImageFormatProperties
pub fn build(self) -> ImageFormatProperties
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.