├── .gitignore ├── 3rdparty ├── jpegxr │ ├── cr_parse.cpp │ ├── cw_emit.cpp │ ├── jpegxr.h │ ├── jpegxr_algo.cpp │ ├── jpegxr_api.cpp │ ├── jpegxr_flags.cpp │ ├── jpegxr_init.cpp │ ├── jpegxr_io.cpp │ ├── jpegxr_pixelformat.cpp │ ├── jpegxr_stdint_minimal.h │ ├── jxr_priv.h │ ├── r_parse.cpp │ ├── r_strip.cpp │ ├── r_tile_frequency.cpp │ ├── r_tile_spatial.cpp │ ├── w_emit.cpp │ ├── w_strip.cpp │ ├── w_tile_frequency.cpp │ ├── w_tile_spatial.cpp │ └── x_strip.cpp └── lzma │ ├── Alloc.c │ ├── Alloc.h │ ├── Bcj2.c │ ├── Bcj2.h │ ├── Bra.c │ ├── Bra.h │ ├── Bra86.c │ ├── BraIA64.c │ ├── CpuArch.h │ ├── LzFind.c │ ├── LzFind.h │ ├── LzHash.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaEnc.c │ ├── LzmaEnc.h │ ├── LzmaLib.c │ ├── LzmaLib.h │ ├── Threads.h │ └── Types.h ├── Makefile ├── README.md ├── atf.h ├── bin ├── dds2atf.exe └── dds2tf ├── dds2atf.cpp ├── pvr2atfcore.cpp └── vs2010 ├── dds2atf.vcxproj ├── dds2atf.vcxproj.filters ├── dds2atf.vcxproj.user ├── dds2atfsolution.sln └── dds2atfsolution.suo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/jpegxr/cr_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/cr_parse.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/cw_emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/cw_emit.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr.h -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_algo.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_api.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_flags.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_init.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_io.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_pixelformat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_pixelformat.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/jpegxr_stdint_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jpegxr_stdint_minimal.h -------------------------------------------------------------------------------- /3rdparty/jpegxr/jxr_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/jxr_priv.h -------------------------------------------------------------------------------- /3rdparty/jpegxr/r_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/r_parse.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/r_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/r_strip.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/r_tile_frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/r_tile_frequency.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/r_tile_spatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/r_tile_spatial.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/w_emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/w_emit.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/w_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/w_strip.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/w_tile_frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/w_tile_frequency.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/w_tile_spatial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/w_tile_spatial.cpp -------------------------------------------------------------------------------- /3rdparty/jpegxr/x_strip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/jpegxr/x_strip.cpp -------------------------------------------------------------------------------- /3rdparty/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Alloc.c -------------------------------------------------------------------------------- /3rdparty/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Alloc.h -------------------------------------------------------------------------------- /3rdparty/lzma/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Bcj2.c -------------------------------------------------------------------------------- /3rdparty/lzma/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Bcj2.h -------------------------------------------------------------------------------- /3rdparty/lzma/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Bra.c -------------------------------------------------------------------------------- /3rdparty/lzma/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Bra.h -------------------------------------------------------------------------------- /3rdparty/lzma/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Bra86.c -------------------------------------------------------------------------------- /3rdparty/lzma/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/BraIA64.c -------------------------------------------------------------------------------- /3rdparty/lzma/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/CpuArch.h -------------------------------------------------------------------------------- /3rdparty/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzFind.c -------------------------------------------------------------------------------- /3rdparty/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzFind.h -------------------------------------------------------------------------------- /3rdparty/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzHash.h -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaDec.c -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaDec.h -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaLib.c -------------------------------------------------------------------------------- /3rdparty/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/LzmaLib.h -------------------------------------------------------------------------------- /3rdparty/lzma/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Threads.h -------------------------------------------------------------------------------- /3rdparty/lzma/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/3rdparty/lzma/Types.h -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/README.md -------------------------------------------------------------------------------- /atf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/atf.h -------------------------------------------------------------------------------- /bin/dds2atf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/bin/dds2atf.exe -------------------------------------------------------------------------------- /bin/dds2tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/bin/dds2tf -------------------------------------------------------------------------------- /dds2atf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/dds2atf.cpp -------------------------------------------------------------------------------- /pvr2atfcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/pvr2atfcore.cpp -------------------------------------------------------------------------------- /vs2010/dds2atf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/vs2010/dds2atf.vcxproj -------------------------------------------------------------------------------- /vs2010/dds2atf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/vs2010/dds2atf.vcxproj.filters -------------------------------------------------------------------------------- /vs2010/dds2atf.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/vs2010/dds2atf.vcxproj.user -------------------------------------------------------------------------------- /vs2010/dds2atfsolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/vs2010/dds2atfsolution.sln -------------------------------------------------------------------------------- /vs2010/dds2atfsolution.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adobe/dds2atf/HEAD/vs2010/dds2atfsolution.suo --------------------------------------------------------------------------------