summaryrefslogtreecommitdiffstats
path: root/third_party/rust/image/src/webp/mod.rs
blob: 24f57ee4d22f9f06cdc53b8acf51754ac3ad642b (plain)
1
2
3
4
5
6
7
8
//! Decoding of WebP Images

pub use self::decoder::WebPDecoder;

mod decoder;
mod transform;

pub mod vp8;