basisu 0.1.0

A bit-exact pure-Rust Basis Universal texture transcoder (.ktx2 and .basis).
Documentation
1
2
3
4
5
6
7
8
9
//! ETC1 and ETC2-EAC block encoding, shared by the UASTC-to-ETC and
//! ETC1S-to-ETC transcode paths. `tables` holds the intensity and selector
//! constants; `block` the block bit layout; `uastc_to_etc1` and `uastc_to_etc2`
//! the per-block encoders built on top of them.

pub mod block;
pub mod tables;
pub mod uastc_to_etc1;
pub mod uastc_to_etc2;