tbc

Crates.iotbc
lib.rstbc
version0.3.0
sourcesrc
created_at2021-04-09 20:06:23.797857
updated_at2021-04-12 15:27:37.950166
descriptionTexture Block Compression (BCn)
homepage
repositoryhttps://github.com/mrDIMAS/tbc
max_upload_size
id381467
size23,097
Dmitry Stepanov (mrDIMAS)

documentation

README

About

Texture Block Compression (BCn) written in Rust. Block compression is used to compress textures for GPU, there are lots of variations BC1 (DXT1), BC3 (DXT5), and so on. Compressed textures has much lower requirements for memory bandwidth and especially useful for slow memory used by built-in GPUs. Almost every GPUs starting from 1998 has hardware decompressor for compressed textures, so there is no performance penalty of compression.

Supported formats

  • BC1 (DXT1)
  • BC3 (DXT5)
  • BC4 (Both R8 and RG8)

References

Commit count: 6

cargo fmt