tessera_ui_basic_components/pipelines/
mean.rs

1//! Mean luminance compute pipeline helpers.
2//!
3//! Provides the [`MeanCommand`] to request luminance sampling and the [`MeanPipeline`]
4//! implementation that performs the GPU dispatch.
5
6mod command;
7mod pipeline;
8
9pub use command::MeanCommand;
10pub use pipeline::MeanPipeline;