Struct SurfaceConfiguration

Source
#[repr(C)]
pub struct SurfaceConfiguration<V> { pub usage: TextureUsages, pub format: TextureFormat, pub width: u32, pub height: u32, pub present_mode: PresentMode, pub desired_maximum_frame_latency: u32, pub alpha_mode: CompositeAlphaMode, pub view_formats: V, }
Expand description

Configures a Surface for presentation.

Fields§

§usage: TextureUsages

The usage of the swap chain. The only usage guaranteed to be supported is TextureUsages::RENDER_ATTACHMENT.

§format: TextureFormat

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

§width: u32

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

If this is not the same size as the underlying surface (e.g. if it is set once, and the window is later resized), the behaviour is defined but platform-specific, and may change in the future (currently macOS scales the surface, other platforms may do something else).

§height: u32

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

If this is not the same size as the underlying surface (e.g. if it is set once, and the window is later resized), the behaviour is defined but platform-specific, and may change in the future (currently macOS scales the surface, other platforms may do something else).

§present_mode: PresentMode

Presentation mode of the swap chain. Fifo is the only mode guaranteed to be supported. FifoRelaxed, Immediate, and Mailbox will crash if unsupported, while AutoVsync and AutoNoVsync will gracefully do a designed sets of fallbacks if their primary modes are unsupported.

§desired_maximum_frame_latency: u32

Desired maximum number of monitor refreshes between a Surface::get_current_texture call and the texture being presented to the screen. This is sometimes called “Frames in Flight”.

Defaults to 2 when created via Surface::get_default_config as this is a reasonable default.

This is ultimately a hint to the backend implementation and will always be clamped to the supported range.

Typical values are 1 to 3, but higher values are valid, though likely to be clamped.

  • Choose 1 to minimize latency above all else. This only gives a single monitor refresh for all of the CPU and GPU work to complete. ⚠️ As a result of these short swapchains, the CPU and GPU cannot run in parallel, prioritizing latency over throughput. For applications like GUIs doing a small amount of GPU work each frame that need low latency, this is a reasonable choice.
  • Choose 2 for a balance between latency and throughput. The CPU and GPU both can each use a full monitor refresh to do their computations. This is a reasonable default for most applications.
  • Choose 3 or higher to maximize throughput, sacrificing latency when the the CPU and GPU are using less than a full monitor refresh each. For applications that use CPU-side pipelining of frames this may be a reasonable choice. ⚠️ On 60hz displays the latency can be very noticeable.

This maps to the backend in the following ways:

  • Vulkan: Number of frames in the swapchain is desired_maximum_frame_latency + 1, clamped to the supported range.
  • DX12: Calls IDXGISwapChain2::SetMaximumFrameLatency(desired_maximum_frame_latency).
  • Metal: Sets the maximumDrawableCount of the underlying CAMetalLayer to desired_maximum_frame_latency + 1, clamped to the supported range.
  • OpenGL: Ignored

It also has various subtle interactions with various present modes and APIs.

  • DX12 + Mailbox: Limits framerate to desired_maximum_frame_latency * Monitor Hz fps.
  • Vulkan/Metal + Mailbox: If this is set to 2, limits framerate to 2 * Monitor Hz fps. 3 or higher is unlimited.
§alpha_mode: CompositeAlphaMode

Specifies how the alpha channel of the textures should be handled during compositing.

§view_formats: V

Specifies what view formats will be allowed when calling Texture::create_view on the texture returned by Surface::get_current_texture.

View formats of the same format as the texture are always allowed.

Note: currently, only the srgb-ness is allowed to change. (ex: Rgba8Unorm texture + Rgba8UnormSrgb view)

Implementations§

Source§

impl<V: Clone> SurfaceConfiguration<V>

Source

pub fn map_view_formats<M>( &self, fun: impl FnOnce(V) -> M, ) -> SurfaceConfiguration<M>

Map view_formats of the texture descriptor into another.

Trait Implementations§

Source§

impl<V: Clone> Clone for SurfaceConfiguration<V>

Source§

fn clone(&self) -> SurfaceConfiguration<V>

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<V: Debug> Debug for SurfaceConfiguration<V>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'de, V> Deserialize<'de> for SurfaceConfiguration<V>
where V: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<V: Hash> Hash for SurfaceConfiguration<V>

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<V: PartialEq> PartialEq for SurfaceConfiguration<V>

Source§

fn eq(&self, other: &SurfaceConfiguration<V>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<V> Serialize for SurfaceConfiguration<V>
where V: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<V: Eq> Eq for SurfaceConfiguration<V>

Source§

impl<V> StructuralPartialEq for SurfaceConfiguration<V>

Auto Trait Implementations§

§

impl<V> Freeze for SurfaceConfiguration<V>
where V: Freeze,

§

impl<V> RefUnwindSafe for SurfaceConfiguration<V>
where V: RefUnwindSafe,

§

impl<V> Send for SurfaceConfiguration<V>
where V: Send,

§

impl<V> Sync for SurfaceConfiguration<V>
where V: Sync,

§

impl<V> Unpin for SurfaceConfiguration<V>
where V: Unpin,

§

impl<V> UnwindSafe for SurfaceConfiguration<V>
where V: UnwindSafe,

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
Source§

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

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
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,

Source§

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

Source§

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

Source§

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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

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

Source§

impl<T> WasmNotSendSync for T

Source§

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