Add DitherMethod type

This commit is contained in:
5ohue
2024-05-09 21:42:51 +03:00
parent e419039647
commit cfbdbd4c0e
5 changed files with 31 additions and 6 deletions

View File

@ -1,9 +1,11 @@
mod colorspace_type;
mod composite_operator;
mod dither_method;
mod metric_type;
mod resource_type;
pub use self::colorspace_type::ColorspaceType;
pub use self::composite_operator::CompositeOperator;
pub use self::dither_method::DitherMethod;
pub use self::metric_type::MetricType;
pub use self::resource_type::ResourceType;