Struct ash::vk::SurfaceCapabilities2EXTBuilder
source · pub struct SurfaceCapabilities2EXTBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SurfaceCapabilities2EXTBuilder<'a>
impl<'a> SurfaceCapabilities2EXTBuilder<'a>
pub fn min_image_count(self, min_image_count: u32) -> Self
pub fn max_image_count(self, max_image_count: u32) -> Self
pub fn current_extent(self, current_extent: Extent2D) -> Self
pub fn min_image_extent(self, min_image_extent: Extent2D) -> Self
pub fn max_image_extent(self, max_image_extent: Extent2D) -> Self
pub fn max_image_array_layers(self, max_image_array_layers: u32) -> Self
pub fn supported_transforms( self, supported_transforms: SurfaceTransformFlagsKHR ) -> Self
pub fn current_transform( self, current_transform: SurfaceTransformFlagsKHR ) -> Self
pub fn supported_composite_alpha( self, supported_composite_alpha: CompositeAlphaFlagsKHR ) -> Self
pub fn supported_usage_flags( self, supported_usage_flags: ImageUsageFlags ) -> Self
pub fn supported_surface_counters( self, supported_surface_counters: SurfaceCounterFlagsEXT ) -> Self
sourcepub fn build(self) -> SurfaceCapabilities2EXT
pub fn build(self) -> SurfaceCapabilities2EXT
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.
Trait Implementations§
source§impl<'a> Deref for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> Deref for SurfaceCapabilities2EXTBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> RefUnwindSafe for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> !Send for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> !Sync for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> Unpin for SurfaceCapabilities2EXTBuilder<'a>
impl<'a> UnwindSafe for SurfaceCapabilities2EXTBuilder<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more