Struct wgpu_types::SwapChainDescriptor [−][src]
#[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: TextureUsageThe usage of the swap chain. The only supported usage is RENDER_ATTACHMENT.
format: TextureFormatThe texture format of the swap chain. The only formats that are guaranteed are
Bgra8Unorm and Bgra8UnormSrgb
width: u32Width of the swap chain. Must be the same size as the surface.
height: u32Height of the swap chain. Must be the same size as the surface.
present_mode: PresentModePresentation 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 Clone for SwapChainDescriptor[src]fn clone(&self) -> SwapChainDescriptor[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Eq for SwapChainDescriptor[src]
impl Eq for SwapChainDescriptor[src]impl Hash for SwapChainDescriptor[src]
impl Hash for SwapChainDescriptor[src]impl PartialEq<SwapChainDescriptor> for SwapChainDescriptor[src]
impl PartialEq<SwapChainDescriptor> for SwapChainDescriptor[src]fn eq(&self, other: &SwapChainDescriptor) -> bool[src]
fn ne(&self, other: &SwapChainDescriptor) -> bool[src]
impl StructuralEq for SwapChainDescriptor[src]
impl StructuralEq for SwapChainDescriptor[src]Auto Trait Implementations
impl RefUnwindSafe for SwapChainDescriptor
impl RefUnwindSafe for SwapChainDescriptorimpl Send for SwapChainDescriptor
impl Send for SwapChainDescriptorimpl Sync for SwapChainDescriptor
impl Sync for SwapChainDescriptorimpl Unpin for SwapChainDescriptor
impl Unpin for SwapChainDescriptorimpl UnwindSafe for SwapChainDescriptor
impl UnwindSafe for SwapChainDescriptor