mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Prevent extra allocation in convert to RGB step * Run preprocessing steps in a single loop * Create new API to call steps in pipeline * Include transform and gamma correction step * cargo fmt * Split scale colors into two steps * Code relocations * cargo fmt * Implement transform traits for all tuples * Replace Captures trick with the new `use` keyword
5 lines
95 B
Rust
5 lines
95 B
Rust
pub mod convert_to_rgb;
|
|
pub mod gamma_correction;
|
|
pub mod record_histogram;
|
|
pub mod transform;
|