Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
2018-02-23 20:00:47 -06:00
cmake Cleanups for 2.1.0 release. 2016-09-19 12:53:33 -07:00
data Merge changes from The Witness. 2018-02-05 18:55:07 -08:00
doc Add doc folder. 2009-11-03 23:57:36 +00:00
extern Merge changes from The Witness. 2018-02-05 18:55:07 -08:00
project Fixed some missing files in the vc12 project. 2018-02-23 19:56:37 -06:00
src Fix compilation on Linux - missing include, semicolon 2018-02-06 08:38:37 +01:00
.gitignore Added gitignore to hide stuff that shouldn't be checked in. 2018-02-23 19:59:21 -06:00
buildpkg Fix buildpkg for osx. 2017-02-15 11:10:43 -08:00
ChangeLog Update changelog 2017-08-23 11:05:30 -07:00
CMakeLists.txt Merge changes from The Witness. 2018-02-05 18:55:07 -08:00
configure Integrate more changes from cfcohen. 2015-12-05 15:16:14 -08:00
LICENSE Merge changes from The Witness. 2018-02-05 18:55:07 -08:00
README.md Merge changes from The Witness. 2018-02-05 18:55:07 -08: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)

Open project/vc12/thekla.sln using Visual Studio.

Solutions for previous versions are also available, but they may not be up to date.

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