Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
2020-08-23 23:24:25 -07: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 Update version number. 2020-08-23 23:18:24 -07:00
extern Remove unused dependencies. 2020-08-23 15:15:45 -07:00
project Target AVX2 in all projects and configurations. 2020-08-23 23:24:25 -07:00
src Update version number. 2020-08-23 23:18:24 -07:00
.gitignore Update version number. 2020-08-23 23:18:24 -07:00
ChangeLog Update changelog 2017-08-23 11:05:30 -07:00
CMakeLists.txt Update version number. 2020-08-23 23:18:24 -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 22:26:58 -07:00
VERSION Update version number. 2020-08-23 23:18:24 -07:00

NVIDIA Texture Tools Actions Status MIT GitHub

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