wow-blp 0.6.2

Parser and encoder for World of Warcraft BLP texture files with DXT compression support
Documentation
/// Direct pixel data types (Raw and DXT formats)
pub mod direct;
/// BLP file header structures
pub mod header;
/// Main BLP image type
pub mod image;
/// JPEG-specific BLP content
pub mod jpeg;
/// Mipmap locator information
pub mod locator;
/// BLP version definitions
pub mod version;

pub use self::image::*;
pub use direct::*;
pub use header::*;
pub use jpeg::*;
pub use locator::*;
pub use version::*;