Struct nannou::window::SurfaceConfigurationBuilder
source · pub struct SurfaceConfigurationBuilder {
pub usage: Option<TextureUsages>,
pub format: Option<TextureFormat>,
pub present_mode: Option<PresentMode>,
}Expand description
Surface configuration for which nannou will provide a default if unspecified.
See the builder methods for more details on each parameter.
Fields§
§usage: Option<TextureUsages>§format: Option<TextureFormat>§present_mode: Option<PresentMode>Implementations§
source§impl SurfaceConfigurationBuilder
impl SurfaceConfigurationBuilder
sourcepub const DEFAULT_FORMAT: TextureFormat = wgpu::TextureFormat::Bgra8UnormSrgb
pub const DEFAULT_FORMAT: TextureFormat = wgpu::TextureFormat::Bgra8UnormSrgb
Only used in the case that the wgpu::Surface::get_preferred_format method returns None.
pub const DEFAULT_PRESENT_MODE: PresentMode = wgpu::PresentMode::Fifo
pub const DEFAULT_USAGE: TextureUsages = wgpu::TextureUsages::RENDER_ATTACHMENT
sourcepub fn from_configuration(conf: &SurfaceConfiguration) -> Self
pub fn from_configuration(conf: &SurfaceConfiguration) -> Self
Create a SurfaceConfigurationBuilder from an existing descriptor.
sourcepub fn usage(self, usage: TextureUsages) -> Self
pub fn usage(self, usage: TextureUsages) -> Self
Specify the texture usages for the surface.
sourcepub fn format(self, format: TextureFormat) -> Self
pub fn format(self, format: TextureFormat) -> Self
Specify the texture format for the surface.
sourcepub fn present_mode(self, present_mode: PresentMode) -> Self
pub fn present_mode(self, present_mode: PresentMode) -> Self
The way in which a surface’s frames are presented to the display.
By default, nannou will attempt to select the ideal present mode depending on the current
app LoopMode.
Trait Implementations§
source§impl Clone for SurfaceConfigurationBuilder
impl Clone for SurfaceConfigurationBuilder
source§fn clone(&self) -> SurfaceConfigurationBuilder
fn clone(&self) -> SurfaceConfigurationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SurfaceConfigurationBuilder
impl Debug for SurfaceConfigurationBuilder
source§impl Default for SurfaceConfigurationBuilder
impl Default for SurfaceConfigurationBuilder
source§fn default() -> SurfaceConfigurationBuilder
fn default() -> SurfaceConfigurationBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for SurfaceConfigurationBuilder
impl Send for SurfaceConfigurationBuilder
impl Sync for SurfaceConfigurationBuilder
impl Unpin for SurfaceConfigurationBuilder
impl UnwindSafe for SurfaceConfigurationBuilder
Blanket Implementations§
source§impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S
source§fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into_using<M>(self, method: M) -> Dwhere
M: TransformMatrix<Swp, Dwp, T>,
Convert the source color to the destination color using the specified
method
source§fn adapt_into(self) -> D
fn adapt_into(self) -> D
Convert the source color to the destination color using the bradford
method by default
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
source§impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
impl<T, U> ConvertInto<U> for Twhere
U: ConvertFrom<T>,
source§fn convert_into(self) -> U
fn convert_into(self) -> U
Convert into T with values clamped to the color defined bounds Read more
source§fn convert_unclamped_into(self) -> U
fn convert_unclamped_into(self) -> U
Convert into T. The resulting color might be invalid in its color space Read more
source§fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
fn try_convert_into(self) -> Result<U, OutOfBounds<U>>
Convert into T, returning ok if the color is inside of its defined range,
otherwise an
OutOfBounds error is returned which contains the unclamped color. Read more