Converts Compiled Valve Texture (.vtex_c) files to Targa (.tga) files.
- Only handles vtex files encoded in DXT1, DXT5/DXT5_nm, and RGBA as those are the only formats used by Dota2 so far.
- [ImageMagick] (http://www.imagemagick.org/) For reading DXT1/DXT5/RGBA images and writing .tga files.
$g++ -std=c++11 vtex_c2tga.cpp `Magick++-config --cppflags --cxxflags --ldflags --libs` -o vtex_c2tga.exe
$vtex_c2tga.exe "/path/to/.vtex_c" "/path/to/output/.tga"
MIT License. See LICENSE file for further details.