#![warn(missing_docs)]
#![warn(clippy::all)]
pub mod atlas;
pub mod command;
pub mod context;
pub mod debug;
pub mod glyph_cache;
pub mod gradient;
pub mod msaa;
pub mod paint_bridge;
pub mod pipeline;
pub mod sdf;
pub mod shader;
pub mod stencil_cover;
pub mod surface;
pub mod tessellation;
pub mod texture;
pub mod tiling;
#[cfg(feature = "wgpu-backend")]
pub mod wgpu_backend;
#[cfg(feature = "vulkan")]
pub mod vulkan_backend;
#[cfg(feature = "opengl")]
pub mod opengl_backend;
#[cfg(all(feature = "metal", any(target_os = "macos", target_os = "ios")))]
pub mod metal_backend;
pub use atlas::*;
pub use command::*;
pub use context::*;
pub use glyph_cache::*;
pub use gradient::*;
pub use msaa::*;
pub use pipeline::*;
pub use sdf::*;
pub use shader::*;
pub use stencil_cover::*;
pub use surface::*;
pub use tessellation::*;
pub use texture::*;
pub use tiling::*;
#[cfg(feature = "wgpu-backend")]
pub use wgpu_backend::*;
#[cfg(feature = "vulkan")]
pub use vulkan_backend::*;
#[cfg(feature = "opengl")]
pub use opengl_backend::*;
#[cfg(all(feature = "metal", any(target_os = "macos", target_os = "ios")))]
pub use metal_backend::*;