Introduce custom backend-specific primitives
This commit is contained in:
parent
8d65e40a11
commit
0ae1baa37b
28 changed files with 618 additions and 263 deletions
|
|
@ -24,8 +24,8 @@
|
|||
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
|
||||
)]
|
||||
#![deny(
|
||||
missing_debug_implementations,
|
||||
missing_docs,
|
||||
//missing_debug_implementations,
|
||||
//missing_docs,
|
||||
unsafe_code,
|
||||
unused_results,
|
||||
clippy::extra_unused_lifetimes,
|
||||
|
|
@ -47,6 +47,7 @@ pub mod geometry;
|
|||
mod backend;
|
||||
mod buffer;
|
||||
mod color;
|
||||
mod primitive;
|
||||
mod quad;
|
||||
mod text;
|
||||
mod triangle;
|
||||
|
|
@ -60,6 +61,7 @@ pub use wgpu;
|
|||
|
||||
pub use backend::Backend;
|
||||
pub use layer::Layer;
|
||||
pub use primitive::Primitive;
|
||||
pub use settings::Settings;
|
||||
|
||||
#[cfg(any(feature = "image", feature = "svg"))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue