Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
2019-12-03 23:34:54 +03:00
cmake Link with -fPIC when using Clang. 2019-01-09 00:55:19 +01: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 poshlib: added support for MCST Elbrus 2000 (e2k) 2019-11-23 16:22:56 +03:00
project Add Visual Studio 2017 projects. 2019-01-31 18:10:14 -08:00
src Merge pull request #292 from leper/clang_linking 2019-11-23 16:10:19 -08: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 Added compiler check for support of C++11 standard 2019-12-03 23:34:54 +03: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