Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
Bernard Cafarelli 4c95dc8716
Fix data testsuite path
Add separator between base path and set path if base path is set

Fixes #299
2020-09-07 14:45:14 +02: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 Fix data testsuite path 2020-09-07 14:45:14 +02:00
.gitignore Update version number. 2020-08-23 23:18:24 -07:00
ChangeLog Update changelog. 2020-08-23 23:27:09 -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