Texture processing tools with support for Direct3D 10 and 11 formats.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Ignacio 7525d356a0 Update buildpkg script 4 years ago
.github Fix github action 4 years ago
cmake Remove unused scripts. 4 years ago
data Add baboon image to waterloo image set. 4 years ago
doc Add doc folder. 15 years ago
extern Remove unused dependencies. 4 years ago
project/vc2017 Use AVX2 by default. 4 years ago
src Linux build fixes. 4 years ago
.gitignore Update vs2017 project files. 4 years ago
CMakeLists.txt Added compiler check for support of C ++ 11 standard 4 years ago
ChangeLog Update changelog 7 years ago
LICENSE Update copyright. 4 years ago
README.md Update README.md 4 years ago
VERSION Bump version number 7 years ago
buildpkg Update buildpkg script 4 years ago
configure Integrate more changes from cfcohen. 8 years ago

README.md

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)

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