|
2 months ago | |
---|---|---|
.github | 6 months ago | |
cmake | 6 months ago | |
data | 11 months ago | |
doc | 6 months ago | |
extern | 6 months ago | |
project | 6 months ago | |
src | 5 months ago | |
.gitignore | 6 months ago | |
CMakeLists.txt | 6 months ago | |
ChangeLog | 6 months ago | |
LICENSE | 6 months ago | |
README.md | 2 months ago | |
VERSION | 6 months ago | |
configure | 5 years ago |
After more than 14 years maintaining and updating this library on my spare time, I've decided to officially discontinue it and focus my energy on other projects.
When I released NVTT there was very little public information about compression for GPU texture formats. Existing codecs were closed-source, encumbered by patents, and not particularly efficient or high quality. A lot has changed since then. NVTT doesn't support the latest formats anymore, some of its codecs are outdated, and it's source code has aged. Today most IHVs maintain their own open source codecs and several companies develop high quality commercial products around texture compression.
If you are looking for alternative texture compression tools and processing algorithms I recommend you check these out:
nvcompress
, built on top of bimg.The NVIDIA Texture Tools is a collection of image processing and texture manipulation tools, designed to be integrated in game tools and asset processing pipelines.
The primary features of the library are mipmap and normal map generation, format conversion, and DXT compression.
Use the provided Visual Studio 2017 solution project/vc2017/thekla.sln
.
Use cmake and the provided configure script:
$ ./configure
$ make
$ sudo make install
To use the NVIDIA Texture Tools in your own applications you just have to include the following header file:
And include the nvtt library in your projects.
The following file contains a simple example that shows how to use the library:
Detailed documentation of the API can be found at:
https://github.com/castano/nvidia-texture-tools/wiki/ApiDocumentation