Struct ash::vk::SurfaceCapabilitiesKHRBuilder
source · pub struct SurfaceCapabilitiesKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> SurfaceCapabilitiesKHRBuilder<'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
sourcepub fn build(self) -> SurfaceCapabilitiesKHR
pub fn build(self) -> SurfaceCapabilitiesKHR
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 SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> Deref for SurfaceCapabilitiesKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> RefUnwindSafe for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> Send for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> Sync for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> Unpin for SurfaceCapabilitiesKHRBuilder<'a>
impl<'a> UnwindSafe for SurfaceCapabilitiesKHRBuilder<'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