pub struct SurfaceCapabilities {
    pub formats: Vec<TextureFormat, Global>,
    pub present_modes: Vec<PresentMode, Global>,
    pub alpha_modes: Vec<CompositeAlphaMode, Global>,
}
Expand description

Defines the capabilities of a given surface and adapter.

Fields§

§formats: Vec<TextureFormat, Global>

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, Global>

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, Global>

List of supported alpha modes to use with the given adapter.

Will return at least one element, CompositeAlphaMode::Opaque or CompositeAlphaMode::Inherit.

Trait Implementations§

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.