Merge pull request #1846 from bungoboingo/feat/background-gradients

[Feature] Gradients for Backgrounds
This commit is contained in:
Héctor Ramón 2023-05-19 04:37:58 +02:00 committed by GitHub
commit cc5d11f1a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 1580 additions and 1465 deletions

View file

@ -29,6 +29,7 @@ mod viewport;
pub mod backend;
pub mod compositor;
pub mod damage;
pub mod gradient;
pub mod primitive;
pub mod renderer;
@ -42,6 +43,7 @@ pub use antialiasing::Antialiasing;
pub use backend::Backend;
pub use compositor::Compositor;
pub use error::Error;
pub use gradient::Gradient;
pub use primitive::Primitive;
pub use renderer::Renderer;
pub use transformation::Transformation;