Struct ash::vk::SwapchainCreateInfoKHRBuilder
source · pub struct SwapchainCreateInfoKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> SwapchainCreateInfoKHRBuilder<'a>
impl<'a> SwapchainCreateInfoKHRBuilder<'a>
pub fn flags(self, flags: SwapchainCreateFlagsKHR) -> Self
pub fn surface(self, surface: SurfaceKHR) -> Self
pub fn min_image_count(self, min_image_count: u32) -> Self
pub fn image_format(self, image_format: Format) -> Self
pub fn image_color_space(self, image_color_space: ColorSpaceKHR) -> Self
pub fn image_extent(self, image_extent: Extent2D) -> Self
pub fn image_array_layers(self, image_array_layers: u32) -> Self
pub fn image_usage(self, image_usage: ImageUsageFlags) -> Self
pub fn image_sharing_mode(self, image_sharing_mode: SharingMode) -> Self
pub fn queue_family_indices(self, queue_family_indices: &'a [u32]) -> Self
pub fn pre_transform(self, pre_transform: SurfaceTransformFlagsKHR) -> Self
pub fn composite_alpha(self, composite_alpha: CompositeAlphaFlagsKHR) -> Self
pub fn present_mode(self, present_mode: PresentModeKHR) -> Self
pub fn clipped(self, clipped: bool) -> Self
pub fn old_swapchain(self, old_swapchain: SwapchainKHR) -> Self
sourcepub fn push_next<T: ExtendsSwapchainCreateInfoKHR>(
self,
next: &'a mut T
) -> Self
pub fn push_next<T: ExtendsSwapchainCreateInfoKHR>( self, next: &'a mut T ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call builder.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
sourcepub fn build(self) -> SwapchainCreateInfoKHR
pub fn build(self) -> SwapchainCreateInfoKHR
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 SwapchainCreateInfoKHRBuilder<'a>
impl<'a> Deref for SwapchainCreateInfoKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> RefUnwindSafe for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> !Send for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> !Sync for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> Unpin for SwapchainCreateInfoKHRBuilder<'a>
impl<'a> UnwindSafe for SwapchainCreateInfoKHRBuilder<'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