summaryrefslogtreecommitdiffstats
path: root/third_party/rust/image/src/tga/mod.rs
blob: af185871e78fdf71772a00c11e11af7be07e4a1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Decoding of TGA Images
//!
//! # Related Links
//! <http://googlesites.inequation.org/tgautilities>

/// A decoder for TGA images
///
/// Currently this decoder does not support 8, 15 and 16 bit color images.
pub use self::decoder::TgaDecoder;

//TODO add 8, 15, 16 bit color support

mod decoder;