Rename `Settings::use_antialiasing` to `antialiasing`

This commit is contained in:
Héctor Ramón Jiménez 2020-02-18 09:54:24 +01:00
parent 9c067562fa
commit 6f7247ca13
5 changed files with 6 additions and 6 deletions

View File

@ -287,7 +287,7 @@ use iced::{
pub fn main() {
Example::run(Settings {
use_antialiasing: true,
antialiasing: true,
..Settings::default()
});
}

View File

@ -5,7 +5,7 @@ use iced::{
pub fn main() {
Clock::run(Settings {
use_antialiasing: true,
antialiasing: true,
..Settings::default()
})
}

View File

@ -15,7 +15,7 @@ use std::time::Instant;
pub fn main() {
SolarSystem::run(Settings {
use_antialiasing: true,
antialiasing: true,
..Settings::default()
})
}

View File

@ -178,7 +178,7 @@ pub trait Application: Sized {
_settings.into(),
iced_wgpu::Settings {
default_font: _settings.default_font,
antialiasing: if _settings.use_antialiasing {
antialiasing: if _settings.antialiasing {
Some(iced_wgpu::settings::Antialiasing::MSAAx4)
} else {
None

View File

@ -17,14 +17,14 @@ pub struct Settings {
// TODO: Add `name` for web compatibility
pub default_font: Option<&'static [u8]>,
/// If set to true, the renderer will try to use antialiasing for some
/// If set to true, the renderer will try to perform antialiasing for some
/// primitives.
///
/// Enabling it can produce a smoother result in some widgets, like the
/// `Canvas`, at a performance cost.
///
/// By default, it is disabled.
pub use_antialiasing: bool,
pub antialiasing: bool,
}
#[cfg(not(target_arch = "wasm32"))]