├── .gitignore ├── GPL.txt ├── LGPL.txt ├── LICENSE ├── README.md ├── VTFCmd ├── VTFCmd.rc ├── enumerations.c ├── enumerations.h ├── resource.h ├── stdafx.h └── vtfcmd.c ├── VTFEdit ├── About.cpp ├── About.h ├── About.resX ├── BatchConvert.cpp ├── BatchConvert.h ├── BatchConvert.resX ├── DirectoryItemInfoManager.h ├── Utility.h ├── VMTCreate.cpp ├── VMTCreate.h ├── VMTCreate.resX ├── VMTFileUtility.h ├── VTFEdit.cpp ├── VTFEdit.h ├── VTFEdit.rc ├── VTFEdit.resX ├── VTFFileUtility.h ├── VTFOptions.cpp ├── VTFOptions.h ├── VTFOptions.resx ├── VTFResources.cpp ├── VTFResources.h ├── VTFResources.resx ├── WADConvert.cpp ├── WADConvert.h ├── WADConvert.resX ├── app.ico ├── resource.h ├── stdafx.h ├── windows_default.manifest ├── windows_dpiaware.manifest └── windows_visualstyles.manifest ├── VTFLib ├── Error.cpp ├── Error.h ├── FileReader.cpp ├── FileReader.h ├── FileWriter.cpp ├── FileWriter.h ├── Float16.cpp ├── Float16.h ├── MemoryReader.cpp ├── MemoryReader.h ├── MemoryWriter.cpp ├── MemoryWriter.h ├── Proc.cpp ├── Proc.h ├── ProcReader.cpp ├── ProcReader.h ├── ProcWriter.cpp ├── ProcWriter.h ├── Reader.h ├── Readers.h ├── Resource.rc ├── VMTFile.cpp ├── VMTFile.h ├── VMTGroupNode.cpp ├── VMTGroupNode.h ├── VMTIntegerNode.cpp ├── VMTIntegerNode.h ├── VMTNode.cpp ├── VMTNode.h ├── VMTNodes.h ├── VMTSingleNode.cpp ├── VMTSingleNode.h ├── VMTStringNode.cpp ├── VMTStringNode.h ├── VMTValueNode.cpp ├── VMTValueNode.h ├── VMTWrapper.cpp ├── VMTWrapper.h ├── VTFDXTn.h ├── VTFFile.cpp ├── VTFFile.h ├── VTFFormat.h ├── VTFLib.cpp ├── VTFLib.h ├── VTFMathlib.cpp ├── VTFMathlib.h ├── VTFWrapper.cpp ├── VTFWrapper.h ├── Writer.h ├── Writers.h ├── resource.h └── stdafx.h ├── lib ├── HLLib.h ├── VTFLib.h └── x64 │ └── HLLib.lib ├── resources ├── 1269.ico ├── 1618.ico ├── 1962.ico ├── 489.ico ├── 502.ico ├── alpha.png ├── alphamask.png ├── blue.png ├── export.png ├── green.png ├── import.png ├── red.png ├── rgb.png ├── tile.png ├── zoomIn.png └── zoomOut.png ├── script └── Copy VTFLib.bat ├── sln └── vs2019 │ ├── VTFCmd │ ├── VTFCmd.vcproj │ ├── VTFCmd.vcxproj │ └── VTFCmd.vcxproj.filters │ ├── VTFEdit │ ├── VTFEdit.vcproj │ ├── VTFEdit.vcxproj │ └── VTFEdit.vcxproj.filters │ ├── VTFEditInstaller │ └── VTFEditInstaller.vdproj │ ├── VTFLib.sln │ └── VTFLib │ ├── VTFLib.vcproj │ ├── VTFLib.vcxproj │ └── VTFLib.vcxproj.filters └── thirdparty ├── bin ├── DevIL.dll └── HLLib.dll ├── include ├── Compressonator.h ├── IL │ ├── DevIL.i │ ├── build-lua │ ├── build-python │ ├── config.h.win │ ├── devil_cpp_wrapper.hpp │ ├── devil_internal_exports.h │ ├── il.h │ ├── il_wrap.h │ ├── ilu.h │ ├── ilu_region.h │ ├── ilut.h │ ├── ilut_config.h │ ├── luadevil.c │ └── stamp-h.in └── stb_image_resize.h └── lib ├── Compressonator_MT.lib ├── Compressonator_MTd.lib └── DevIL.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/.gitignore -------------------------------------------------------------------------------- /GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/GPL.txt -------------------------------------------------------------------------------- /LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/LGPL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/README.md -------------------------------------------------------------------------------- /VTFCmd/VTFCmd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/VTFCmd.rc -------------------------------------------------------------------------------- /VTFCmd/enumerations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/enumerations.c -------------------------------------------------------------------------------- /VTFCmd/enumerations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/enumerations.h -------------------------------------------------------------------------------- /VTFCmd/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/resource.h -------------------------------------------------------------------------------- /VTFCmd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/stdafx.h -------------------------------------------------------------------------------- /VTFCmd/vtfcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFCmd/vtfcmd.c -------------------------------------------------------------------------------- /VTFEdit/About.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/About.cpp -------------------------------------------------------------------------------- /VTFEdit/About.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/About.h -------------------------------------------------------------------------------- /VTFEdit/About.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/About.resX -------------------------------------------------------------------------------- /VTFEdit/BatchConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/BatchConvert.cpp -------------------------------------------------------------------------------- /VTFEdit/BatchConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/BatchConvert.h -------------------------------------------------------------------------------- /VTFEdit/BatchConvert.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/BatchConvert.resX -------------------------------------------------------------------------------- /VTFEdit/DirectoryItemInfoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/DirectoryItemInfoManager.h -------------------------------------------------------------------------------- /VTFEdit/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/Utility.h -------------------------------------------------------------------------------- /VTFEdit/VMTCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VMTCreate.cpp -------------------------------------------------------------------------------- /VTFEdit/VMTCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VMTCreate.h -------------------------------------------------------------------------------- /VTFEdit/VMTCreate.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VMTCreate.resX -------------------------------------------------------------------------------- /VTFEdit/VMTFileUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VMTFileUtility.h -------------------------------------------------------------------------------- /VTFEdit/VTFEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFEdit.cpp -------------------------------------------------------------------------------- /VTFEdit/VTFEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFEdit.h -------------------------------------------------------------------------------- /VTFEdit/VTFEdit.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFEdit.rc -------------------------------------------------------------------------------- /VTFEdit/VTFEdit.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFEdit.resX -------------------------------------------------------------------------------- /VTFEdit/VTFFileUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFFileUtility.h -------------------------------------------------------------------------------- /VTFEdit/VTFOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFOptions.cpp -------------------------------------------------------------------------------- /VTFEdit/VTFOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFOptions.h -------------------------------------------------------------------------------- /VTFEdit/VTFOptions.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFOptions.resx -------------------------------------------------------------------------------- /VTFEdit/VTFResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFResources.cpp -------------------------------------------------------------------------------- /VTFEdit/VTFResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFResources.h -------------------------------------------------------------------------------- /VTFEdit/VTFResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/VTFResources.resx -------------------------------------------------------------------------------- /VTFEdit/WADConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/WADConvert.cpp -------------------------------------------------------------------------------- /VTFEdit/WADConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/WADConvert.h -------------------------------------------------------------------------------- /VTFEdit/WADConvert.resX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/WADConvert.resX -------------------------------------------------------------------------------- /VTFEdit/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/app.ico -------------------------------------------------------------------------------- /VTFEdit/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/resource.h -------------------------------------------------------------------------------- /VTFEdit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/stdafx.h -------------------------------------------------------------------------------- /VTFEdit/windows_default.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/windows_default.manifest -------------------------------------------------------------------------------- /VTFEdit/windows_dpiaware.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/windows_dpiaware.manifest -------------------------------------------------------------------------------- /VTFEdit/windows_visualstyles.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFEdit/windows_visualstyles.manifest -------------------------------------------------------------------------------- /VTFLib/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Error.cpp -------------------------------------------------------------------------------- /VTFLib/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Error.h -------------------------------------------------------------------------------- /VTFLib/FileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/FileReader.cpp -------------------------------------------------------------------------------- /VTFLib/FileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/FileReader.h -------------------------------------------------------------------------------- /VTFLib/FileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/FileWriter.cpp -------------------------------------------------------------------------------- /VTFLib/FileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/FileWriter.h -------------------------------------------------------------------------------- /VTFLib/Float16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Float16.cpp -------------------------------------------------------------------------------- /VTFLib/Float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Float16.h -------------------------------------------------------------------------------- /VTFLib/MemoryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/MemoryReader.cpp -------------------------------------------------------------------------------- /VTFLib/MemoryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/MemoryReader.h -------------------------------------------------------------------------------- /VTFLib/MemoryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/MemoryWriter.cpp -------------------------------------------------------------------------------- /VTFLib/MemoryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/MemoryWriter.h -------------------------------------------------------------------------------- /VTFLib/Proc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Proc.cpp -------------------------------------------------------------------------------- /VTFLib/Proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Proc.h -------------------------------------------------------------------------------- /VTFLib/ProcReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/ProcReader.cpp -------------------------------------------------------------------------------- /VTFLib/ProcReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/ProcReader.h -------------------------------------------------------------------------------- /VTFLib/ProcWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/ProcWriter.cpp -------------------------------------------------------------------------------- /VTFLib/ProcWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/ProcWriter.h -------------------------------------------------------------------------------- /VTFLib/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Reader.h -------------------------------------------------------------------------------- /VTFLib/Readers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Readers.h -------------------------------------------------------------------------------- /VTFLib/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Resource.rc -------------------------------------------------------------------------------- /VTFLib/VMTFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTFile.cpp -------------------------------------------------------------------------------- /VTFLib/VMTFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTFile.h -------------------------------------------------------------------------------- /VTFLib/VMTGroupNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTGroupNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTGroupNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTGroupNode.h -------------------------------------------------------------------------------- /VTFLib/VMTIntegerNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTIntegerNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTIntegerNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTIntegerNode.h -------------------------------------------------------------------------------- /VTFLib/VMTNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTNode.h -------------------------------------------------------------------------------- /VTFLib/VMTNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTNodes.h -------------------------------------------------------------------------------- /VTFLib/VMTSingleNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTSingleNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTSingleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTSingleNode.h -------------------------------------------------------------------------------- /VTFLib/VMTStringNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTStringNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTStringNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTStringNode.h -------------------------------------------------------------------------------- /VTFLib/VMTValueNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTValueNode.cpp -------------------------------------------------------------------------------- /VTFLib/VMTValueNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTValueNode.h -------------------------------------------------------------------------------- /VTFLib/VMTWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTWrapper.cpp -------------------------------------------------------------------------------- /VTFLib/VMTWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VMTWrapper.h -------------------------------------------------------------------------------- /VTFLib/VTFDXTn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFDXTn.h -------------------------------------------------------------------------------- /VTFLib/VTFFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFFile.cpp -------------------------------------------------------------------------------- /VTFLib/VTFFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFFile.h -------------------------------------------------------------------------------- /VTFLib/VTFFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFFormat.h -------------------------------------------------------------------------------- /VTFLib/VTFLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFLib.cpp -------------------------------------------------------------------------------- /VTFLib/VTFLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFLib.h -------------------------------------------------------------------------------- /VTFLib/VTFMathlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFMathlib.cpp -------------------------------------------------------------------------------- /VTFLib/VTFMathlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFMathlib.h -------------------------------------------------------------------------------- /VTFLib/VTFWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFWrapper.cpp -------------------------------------------------------------------------------- /VTFLib/VTFWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/VTFWrapper.h -------------------------------------------------------------------------------- /VTFLib/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Writer.h -------------------------------------------------------------------------------- /VTFLib/Writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/Writers.h -------------------------------------------------------------------------------- /VTFLib/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/resource.h -------------------------------------------------------------------------------- /VTFLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/VTFLib/stdafx.h -------------------------------------------------------------------------------- /lib/HLLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/lib/HLLib.h -------------------------------------------------------------------------------- /lib/VTFLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/lib/VTFLib.h -------------------------------------------------------------------------------- /lib/x64/HLLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/lib/x64/HLLib.lib -------------------------------------------------------------------------------- /resources/1269.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/1269.ico -------------------------------------------------------------------------------- /resources/1618.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/1618.ico -------------------------------------------------------------------------------- /resources/1962.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/1962.ico -------------------------------------------------------------------------------- /resources/489.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/489.ico -------------------------------------------------------------------------------- /resources/502.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/502.ico -------------------------------------------------------------------------------- /resources/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/alpha.png -------------------------------------------------------------------------------- /resources/alphamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/alphamask.png -------------------------------------------------------------------------------- /resources/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/blue.png -------------------------------------------------------------------------------- /resources/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/export.png -------------------------------------------------------------------------------- /resources/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/green.png -------------------------------------------------------------------------------- /resources/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/import.png -------------------------------------------------------------------------------- /resources/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/red.png -------------------------------------------------------------------------------- /resources/rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/rgb.png -------------------------------------------------------------------------------- /resources/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/tile.png -------------------------------------------------------------------------------- /resources/zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/zoomIn.png -------------------------------------------------------------------------------- /resources/zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/resources/zoomOut.png -------------------------------------------------------------------------------- /script/Copy VTFLib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/script/Copy VTFLib.bat -------------------------------------------------------------------------------- /sln/vs2019/VTFCmd/VTFCmd.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFCmd/VTFCmd.vcproj -------------------------------------------------------------------------------- /sln/vs2019/VTFCmd/VTFCmd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFCmd/VTFCmd.vcxproj -------------------------------------------------------------------------------- /sln/vs2019/VTFCmd/VTFCmd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFCmd/VTFCmd.vcxproj.filters -------------------------------------------------------------------------------- /sln/vs2019/VTFEdit/VTFEdit.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFEdit/VTFEdit.vcproj -------------------------------------------------------------------------------- /sln/vs2019/VTFEdit/VTFEdit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFEdit/VTFEdit.vcxproj -------------------------------------------------------------------------------- /sln/vs2019/VTFEdit/VTFEdit.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFEdit/VTFEdit.vcxproj.filters -------------------------------------------------------------------------------- /sln/vs2019/VTFEditInstaller/VTFEditInstaller.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFEditInstaller/VTFEditInstaller.vdproj -------------------------------------------------------------------------------- /sln/vs2019/VTFLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFLib.sln -------------------------------------------------------------------------------- /sln/vs2019/VTFLib/VTFLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFLib/VTFLib.vcproj -------------------------------------------------------------------------------- /sln/vs2019/VTFLib/VTFLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFLib/VTFLib.vcxproj -------------------------------------------------------------------------------- /sln/vs2019/VTFLib/VTFLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/sln/vs2019/VTFLib/VTFLib.vcxproj.filters -------------------------------------------------------------------------------- /thirdparty/bin/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/bin/DevIL.dll -------------------------------------------------------------------------------- /thirdparty/bin/HLLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/bin/HLLib.dll -------------------------------------------------------------------------------- /thirdparty/include/Compressonator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/Compressonator.h -------------------------------------------------------------------------------- /thirdparty/include/IL/DevIL.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/DevIL.i -------------------------------------------------------------------------------- /thirdparty/include/IL/build-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/build-lua -------------------------------------------------------------------------------- /thirdparty/include/IL/build-python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/build-python -------------------------------------------------------------------------------- /thirdparty/include/IL/config.h.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/config.h.win -------------------------------------------------------------------------------- /thirdparty/include/IL/devil_cpp_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/devil_cpp_wrapper.hpp -------------------------------------------------------------------------------- /thirdparty/include/IL/devil_internal_exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/devil_internal_exports.h -------------------------------------------------------------------------------- /thirdparty/include/IL/il.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/il.h -------------------------------------------------------------------------------- /thirdparty/include/IL/il_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/il_wrap.h -------------------------------------------------------------------------------- /thirdparty/include/IL/ilu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/ilu.h -------------------------------------------------------------------------------- /thirdparty/include/IL/ilu_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/ilu_region.h -------------------------------------------------------------------------------- /thirdparty/include/IL/ilut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/ilut.h -------------------------------------------------------------------------------- /thirdparty/include/IL/ilut_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/ilut_config.h -------------------------------------------------------------------------------- /thirdparty/include/IL/luadevil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/IL/luadevil.c -------------------------------------------------------------------------------- /thirdparty/include/IL/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /thirdparty/include/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/include/stb_image_resize.h -------------------------------------------------------------------------------- /thirdparty/lib/Compressonator_MT.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/lib/Compressonator_MT.lib -------------------------------------------------------------------------------- /thirdparty/lib/Compressonator_MTd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/lib/Compressonator_MTd.lib -------------------------------------------------------------------------------- /thirdparty/lib/DevIL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WereTech/VTFEdit-Reloaded/HEAD/thirdparty/lib/DevIL.lib --------------------------------------------------------------------------------