pub struct SurfaceCapabilities {
    pub formats: Vec<TextureFormat>,
    pub maximum_frame_latency: RangeInclusive<u32>,
    pub current_extent: Option<Extent3d>,
    pub usage: TextureUses,
    pub present_modes: Vec<PresentMode>,
    pub composite_alpha_modes: Vec<CompositeAlphaMode>,
}
Expand description

Describes information about what a Surface’s presentation capabilities are. Fetch this with Adapter::surface_capabilities.

Fields§

§formats: Vec<TextureFormat>

List of supported texture formats.

Must be at least one.

§maximum_frame_latency: RangeInclusive<u32>

Range for the number of queued frames.

This adjusts either the swapchain frame count to value + 1 - or sets SetMaximumFrameLatency to the value given, or uses a wait-for-present in the acquire method to limit rendering such that it acts like it’s a value + 1 swapchain frame set.

  • maximum_frame_latency.start must be at least 1.
  • maximum_frame_latency.end must be larger or equal to maximum_frame_latency.start.
§current_extent: Option<Extent3d>

Current extent of the surface, if known.

§usage: TextureUses

Supported texture usage flags.

Must have at least TextureUses::COLOR_TARGET

§present_modes: Vec<PresentMode>

List of supported V-sync modes.

Must be at least one.

§composite_alpha_modes: Vec<CompositeAlphaMode>

List of supported alpha composition modes.

Must be at least one.

Trait Implementations§

source§

impl Clone for SurfaceCapabilities

source§

fn clone(&self) -> SurfaceCapabilities

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SurfaceCapabilities

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,