[−][src]Struct ash::vk::SwapchainCreateInfoKHRBuilder
Methods
impl<'a> SwapchainCreateInfoKHRBuilder<'a>
[src]
pub fn flags(
self,
flags: SwapchainCreateFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
flags: SwapchainCreateFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn surface(self, surface: SurfaceKHR) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
pub fn min_image_count(
self,
min_image_count: u32
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
min_image_count: u32
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_format(
self,
image_format: Format
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_format: Format
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_color_space(
self,
image_color_space: ColorSpaceKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_color_space: ColorSpaceKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_extent(
self,
image_extent: Extent2D
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_extent: Extent2D
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_array_layers(
self,
image_array_layers: u32
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_array_layers: u32
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_usage(
self,
image_usage: ImageUsageFlags
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_usage: ImageUsageFlags
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn image_sharing_mode(
self,
image_sharing_mode: SharingMode
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
image_sharing_mode: SharingMode
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn queue_family_indices(
self,
queue_family_indices: &'a [u32]
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
queue_family_indices: &'a [u32]
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn pre_transform(
self,
pre_transform: SurfaceTransformFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
pre_transform: SurfaceTransformFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn composite_alpha(
self,
composite_alpha: CompositeAlphaFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
composite_alpha: CompositeAlphaFlagsKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn present_mode(
self,
present_mode: PresentModeKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
present_mode: PresentModeKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn clipped(self, clipped: bool) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
pub fn old_swapchain(
self,
old_swapchain: SwapchainKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
old_swapchain: SwapchainKHR
) -> SwapchainCreateInfoKHRBuilder<'a>
pub fn push_next<T: ExtendsSwapchainCreateInfoKHR>(
self,
next: &'a mut T
) -> SwapchainCreateInfoKHRBuilder<'a>
[src]
self,
next: &'a mut T
) -> SwapchainCreateInfoKHRBuilder<'a>
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
.
pub fn build(self) -> SwapchainCreateInfoKHR
[src]
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.
Methods from Deref<Target = SwapchainCreateInfoKHR>
Trait Implementations
impl<'a> Deref for SwapchainCreateInfoKHRBuilder<'a>
[src]
type Target = SwapchainCreateInfoKHR
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
impl<'a> DerefMut for SwapchainCreateInfoKHRBuilder<'a>
[src]
Auto Trait Implementations
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
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,