| 1 | //! Decoding of TGA Images |
|---|---|
| 2 | //! |
| 3 | //! # Related Links |
| 4 | //! <http://googlesites.inequation.org/tgautilities> |
| 5 | |
| 6 | /// A decoder for TGA images |
| 7 | /// |
| 8 | /// Currently this decoder does not support 8, 15 and 16 bit color images. |
| 9 | pub use self::decoder::TgaDecoder; |
| 10 | |
| 11 | //TODO add 8, 15, 16 bit color support |
| 12 | |
| 13 | pub use self::encoder::TgaEncoder; |
| 14 | |
| 15 | mod decoder; |
| 16 | mod encoder; |
| 17 | mod header; |
| 18 |
