tessera_ui_basic_components/pipelines/
contrast.rs

1//! Contrast pipeline module.
2//!
3//! This module exposes the [`ContrastCommand`] and [`ContrastPipeline`] types, which together
4//! implement a compute-driven contrast adjustment pass for Tessera UI components.
5
6mod command;
7mod pipeline;
8
9pub use command::ContrastCommand;
10pub use pipeline::ContrastPipeline;