[][src]Struct wgpu::SwapChainDescriptor

#[repr(C)]pub struct SwapChainDescriptor {
    pub usage: TextureUsage,
    pub format: TextureFormat,
    pub width: u32,
    pub height: u32,
    pub present_mode: PresentMode,
}
[]

Describes a [SwapChain].

Fields

usage: TextureUsage
[]

The usage of the swap chain. The only supported usage is OUTPUT_ATTACHMENT

format: TextureFormat
[]

The texture format of the swap chain. The only formats that are guaranteed are Bgra8Unorm and Bgra8UnormSrgb

width: u32
[]

Width of the swap chain. Must be the same size as the surface.

height: u32
[]

Height of the swap chain. Must be the same size as the surface.

present_mode: PresentMode
[]

Presentation mode of the swap chain. FIFO is the only guaranteed to be supported, though other formats will automatically fall back to FIFO.

Trait Implementations

impl Clone for SwapChainDescriptor[src][+]

impl Debug for SwapChainDescriptor[src][+]

impl Eq for SwapChainDescriptor[src]

impl Hash for SwapChainDescriptor[src][+]

impl PartialEq<SwapChainDescriptor> for SwapChainDescriptor[src][+]

impl StructuralEq for SwapChainDescriptor[src]

impl StructuralPartialEq for SwapChainDescriptor[src]

Auto Trait Implementations

impl RefUnwindSafe for SwapChainDescriptor

impl Send for SwapChainDescriptor

impl Sync for SwapChainDescriptor

impl Unpin for SwapChainDescriptor

impl UnwindSafe for SwapChainDescriptor

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> Instrument for T[src][+]

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

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

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.