Struct wgpu_types::SurfaceCapabilities
source · pub struct SurfaceCapabilities {
pub formats: Vec<TextureFormat>,
pub present_modes: Vec<PresentMode>,
pub alpha_modes: Vec<CompositeAlphaMode>,
pub usages: TextureUsages,
}
Expand description
Defines the capabilities of a given surface and adapter.
Fields§
§formats: Vec<TextureFormat>
List of supported formats to use with the given adapter. The first format in the vector is preferred.
Returns an empty vector if the surface is incompatible with the adapter.
present_modes: Vec<PresentMode>
List of supported presentation modes to use with the given adapter.
Returns an empty vector if the surface is incompatible with the adapter.
alpha_modes: Vec<CompositeAlphaMode>
List of supported alpha modes to use with the given adapter.
Will return at least one element, CompositeAlphaMode::Opaque or CompositeAlphaMode::Inherit.
usages: TextureUsages
Bitflag of supported texture usages for the surface to use with the given adapter.
The usage TextureUsages::RENDER_ATTACHMENT is guaranteed.
Trait Implementations§
source§impl Debug for SurfaceCapabilities
impl Debug for SurfaceCapabilities
Auto Trait Implementations§
impl Freeze for SurfaceCapabilities
impl RefUnwindSafe for SurfaceCapabilities
impl Send for SurfaceCapabilities
impl Sync for SurfaceCapabilities
impl Unpin for SurfaceCapabilities
impl UnwindSafe for SurfaceCapabilities
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