summaryrefslogtreecommitdiffstats
path: root/third_party/rust/image/src/hdr/mod.rs
blob: b3325bc6487a4e80382c02a7da917bbd3b7d08fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!  Decoding of Radiance HDR Images
//!
//!  A decoder for Radiance HDR images
//!
//!  # Related Links
//!
//!  * <http://radsite.lbl.gov/radiance/refer/filefmts.pdf>
//!  * <http://www.graphics.cornell.edu/~bjw/rgbe/rgbe.c>
//!

mod decoder;
mod encoder;

pub use self::decoder::*;
pub use self::encoder::*;