wow-blp 0.6.2

Parser and encoder for World of Warcraft BLP texture files with DXT compression support
Documentation
1
2
3
4
5
6
7
8
9
10
/// DXT compressed texture formats
pub mod dxtn;
/// Raw indexed color format (BLP0/BLP1)
pub mod raw1;
/// Raw BGRA format (BLP2)
pub mod raw3;

pub use dxtn::*;
pub use raw1::*;
pub use raw3::*;