Texture processing tools with support for Direct3D 10 and 11 formats.
Go to file
Ignacio Castano 07d9ab7860 Add goofy_tc.
2020-07-05 23:05:17 -07:00
.github Create FUNDING.yml 2020-06-12 23:01:14 -07:00
cmake Link with -fPIC when using Clang. 2019-01-09 00:55:19 +01:00
data Add baboon image to waterloo image set. 2020-03-23 10:05:31 -07:00
doc Add doc folder. 2009-11-03 23:57:36 +00:00
extern Add goofy_tc. 2020-07-05 23:05:17 -07:00
project Update vc projects. 2020-04-13 18:44:57 -07:00
src Update to latest icbc version. 2020-06-07 20:02:14 -07: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 2020-04-26 15:23:47 +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