├── .gitignore ├── gimp-vtf.sln ├── gimp-vtf ├── file-vtf-load.c ├── file-vtf-save.c ├── file-vtf.c ├── file-vtf.h ├── file-vtf.ico ├── file-vtf.rc ├── file-vtf_en.po ├── gimp-vtf.props ├── gimp-vtf.vcxproj ├── gimp-vtf.vcxproj.filters ├── resources.h └── winstuff.c ├── lib64 ├── dll_to_lib.cmd └── how_to_get_the_libs.txt ├── libs ├── dll_to_lib.cmd └── how_to_get_the_libs.txt └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/.gitignore -------------------------------------------------------------------------------- /gimp-vtf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf.sln -------------------------------------------------------------------------------- /gimp-vtf/file-vtf-load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf-load.c -------------------------------------------------------------------------------- /gimp-vtf/file-vtf-save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf-save.c -------------------------------------------------------------------------------- /gimp-vtf/file-vtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf.c -------------------------------------------------------------------------------- /gimp-vtf/file-vtf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf.h -------------------------------------------------------------------------------- /gimp-vtf/file-vtf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf.ico -------------------------------------------------------------------------------- /gimp-vtf/file-vtf.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf.rc -------------------------------------------------------------------------------- /gimp-vtf/file-vtf_en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/file-vtf_en.po -------------------------------------------------------------------------------- /gimp-vtf/gimp-vtf.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/gimp-vtf.props -------------------------------------------------------------------------------- /gimp-vtf/gimp-vtf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/gimp-vtf.vcxproj -------------------------------------------------------------------------------- /gimp-vtf/gimp-vtf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/gimp-vtf.vcxproj.filters -------------------------------------------------------------------------------- /gimp-vtf/resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/resources.h -------------------------------------------------------------------------------- /gimp-vtf/winstuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/gimp-vtf/winstuff.c -------------------------------------------------------------------------------- /lib64/dll_to_lib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/lib64/dll_to_lib.cmd -------------------------------------------------------------------------------- /lib64/how_to_get_the_libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/lib64/how_to_get_the_libs.txt -------------------------------------------------------------------------------- /libs/dll_to_lib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/libs/dll_to_lib.cmd -------------------------------------------------------------------------------- /libs/how_to_get_the_libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/libs/how_to_get_the_libs.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Artfunkel/gimp-vtf/HEAD/readme.txt --------------------------------------------------------------------------------