Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
2020-08-23 18:55:14 -06:00
.github Add release build. 2020-08-23 16:02:06 -07:00
cmake Cleanup configuration. 2020-08-23 15:59:57 -07:00
data Add baboon image to waterloo image set. 2020-03-23 10:05:31 -07:00
doc Fix release instructions. 2020-08-23 15:53:09 -07:00
extern Remove unused dependencies. 2020-08-23 15:15:45 -07:00
project Add sublime and vscode projects. 2020-08-23 15:20:01 -07:00
src Better AARCH64 support. 2020-08-23 18:55:14 -06:00
.gitignore Update vs2017 project files. 2020-07-06 10:33:17 -07:00
buildpkg Update buildpkg script 2020-08-23 15:16:47 -07:00
ChangeLog Update changelog 2017-08-23 11:05:30 -07:00
CMakeLists.txt Cleanup configuration. 2020-08-23 15:59:57 -07:00
configure Integrate more changes from cfcohen. 2015-12-05 15:16:14 -08:00
LICENSE Update copyright. 2020-08-23 14:47:27 -07:00
README.md Update README.md 2020-08-23 13:57:17 -07:00
VERSION Bump version number 2017-08-23 11:02:09 -07:00

NVIDIA Texture Tools

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.

How to build (Windows)

Use the provided Visual Studio 2017 solution project/vc2017/thekla.sln.

How to build (Linux/OSX)

Use cmake and the provided configure script:

$ ./configure
$ make
$ sudo make install

Using NVIDIA Texture Tools

To use the NVIDIA Texture Tools in your own applications you just have to include the following header file:

src/nvtt/nvtt.h

And include the nvtt library in your projects.

The following file contains a simple example that shows how to use the library:

src/nvtt/tools/compress.cpp

Detailed documentation of the API can be found at:

https://github.com/castano/nvidia-texture-tools/wiki/ApiDocumentation