New node: Blur (#2477)

* Implementation of gaussian blur and box blur with linear/nonlinear colorspace in raster category

* styling/formatting

* Partial code review

* remove image crate, use conversion functions from color.rs

* fix box blur checkmark, fix linear/gamma conversion

* mult/unmult alpha before/after blur

* Code review

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
This commit is contained in:
Calvin 2025-04-29 19:47:46 -07:00 committed by GitHub
parent da38f672ae
commit 23b2c5bdf2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 180 additions and 0 deletions

View file

@ -8,6 +8,7 @@ pub mod vector;
pub use graphene_core::*;
pub mod brush;
pub mod dehaze;
pub mod filter;
pub mod image_color_palette;
#[cfg(feature = "wasm")]
pub mod wasm_application_io;