5 releases

0.1.4 Feb 1, 2019
0.1.3 Feb 1, 2019
0.1.2 Jan 12, 2019
0.1.1 Jan 12, 2019
0.1.0 Jan 12, 2019

#47 in Rendering engine

MIT/Apache

7.5MB
1.5K SLoC

Contains (static library, 2MB) libkernelx86_64-unknown-linux-gnu.a, (static library, 2MB) kernelx86_64-pc-windows-msvc.lib, (static library, 1.5MB) src/ispc/libkernelx86_64-apple-darwin.a, (static library, 1MB) kernel_astcx86_64-pc-windows-msvc.lib, (static library, 675KB) libkernel_astcx86_64-apple-darwin.a, (static library, 1MB) libkernel_astcx86_64-unknown-linux-gnu.a

intel_tex

========

Latest version Documentation MIT APACHE2

Rust bindings for Intel's ISPC texture compressor.

State of the art texture compression for BC6H, BC7, ETC1, ASTC and BC1/BC3.

ISPC and libclang are not required, unless regenering the ISPC kernels: cargo build --features=ispc

For convenience, ISPC binaries for macOS, Linux, and Windows are in the repository (but not the crate).

Additionally, libclang exists in the LLVM installer for Windows, also included. https://github.com/gwihlidal/intel-tex-rs/tree/master/dependencies

Supported compression formats:

  • BC1, BC3 (aka DXT1, DXT5)
  • BC6H (FP16 HDR input)
  • BC7
  • ETC1

Pending compression formats:

  • ASTC (LDR, block sizes up to 8x8)
    • Work in progress

Usage

Add this to your Cargo.toml:

[dependencies]
intel_tex = "0.1.4"

and add this to your crate root:

extern crate intel_tex;

Example

$ cargo run --release --example main

Width is 4096
Height is 4096
ColorType is RGB(8)
Converting RGB -> RGBA
Block count: 1048576
Compressing to BC7...
  Done!
Saving lambertian.dds file

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Contributions are always welcome; please look at the issue tracker to see what known improvements are documented.

Code of Conduct

Contribution to the intel_tex crate is organized under the terms of the Contributor Covenant, the maintainer of intel_tex, @gwihlidal, promises to intervene to uphold that code of conduct.

Dependencies