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.
56mod command;
7mod pipeline;
89pub use command::MeanCommand;
10pub use pipeline::MeanPipeline;