Re-export Antialiasing in iced_wgpu

This commit is contained in:
Héctor Ramón Jiménez 2020-05-29 23:09:15 +02:00
parent 0691ec3195
commit 3ef49cd51c
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ mod backend;
mod quad; mod quad;
mod text; mod text;
pub use iced_graphics::{Defaults, Primitive, Viewport}; pub use iced_graphics::{Antialiasing, Defaults, Primitive, Viewport};
pub use wgpu; pub use wgpu;
pub use backend::Backend; pub use backend::Backend;

View File

@ -1,5 +1,5 @@
//! Configure a renderer. //! Configure a renderer.
pub use iced_graphics::Antialiasing; pub use crate::Antialiasing;
/// The settings of a [`Renderer`]. /// The settings of a [`Renderer`].
/// ///