Struct vk_sys::SwapchainCreateInfoKHR[][src]

#[repr(C)]pub struct SwapchainCreateInfoKHR {
    pub sType: StructureType,
    pub pNext: *const c_void,
    pub flags: SwapchainCreateFlagsKHR,
    pub surface: SurfaceKHR,
    pub minImageCount: u32,
    pub imageFormat: Format,
    pub imageColorSpace: ColorSpaceKHR,
    pub imageExtent: Extent2D,
    pub imageArrayLayers: u32,
    pub imageUsage: ImageUsageFlags,
    pub imageSharingMode: SharingMode,
    pub queueFamilyIndexCount: u32,
    pub pQueueFamilyIndices: *const u32,
    pub preTransform: SurfaceTransformFlagBitsKHR,
    pub compositeAlpha: CompositeAlphaFlagBitsKHR,
    pub presentMode: PresentModeKHR,
    pub clipped: Bool32,
    pub oldSwapchain: SwapchainKHR,
}

Fields

sType: StructureTypepNext: *const c_voidflags: SwapchainCreateFlagsKHRsurface: SurfaceKHRminImageCount: u32imageFormat: FormatimageColorSpace: ColorSpaceKHRimageExtent: Extent2DimageArrayLayers: u32imageUsage: ImageUsageFlagsimageSharingMode: SharingModequeueFamilyIndexCount: u32pQueueFamilyIndices: *const u32preTransform: SurfaceTransformFlagBitsKHRcompositeAlpha: CompositeAlphaFlagBitsKHRpresentMode: PresentModeKHRclipped: Bool32oldSwapchain: SwapchainKHR

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.