gitextract_5vvclg95/ ├── .gitignore ├── 3rdParty/ │ ├── DirectXTex/ │ │ ├── .gitignore │ │ ├── DDSTextureLoader/ │ │ │ ├── DDSTextureLoader.cpp │ │ │ └── DDSTextureLoader.h │ │ ├── DDSView/ │ │ │ ├── DDSView.rc │ │ │ ├── DDSView_Desktop_2012.sln │ │ │ ├── DDSView_Desktop_2012.vcxproj │ │ │ ├── DDSView_Desktop_2012.vcxproj.filters │ │ │ ├── DDSView_Desktop_2013.sln │ │ │ ├── DDSView_Desktop_2013.vcxproj │ │ │ ├── DDSView_Desktop_2013.vcxproj.filters │ │ │ ├── DDSView_Desktop_2015.sln │ │ │ ├── DDSView_Desktop_2015.vcxproj │ │ │ ├── DDSView_Desktop_2015.vcxproj.filters │ │ │ ├── ddsview.cpp │ │ │ ├── ddsview.fx │ │ │ ├── hlsl.cmd │ │ │ └── shaders/ │ │ │ ├── ps1D.h │ │ │ ├── ps1Darray.h │ │ │ ├── ps2D.h │ │ │ ├── ps2Darray.h │ │ │ ├── ps3D.h │ │ │ ├── psCube.h │ │ │ └── vs.h │ │ ├── DirectXTex/ │ │ │ ├── BC.cpp │ │ │ ├── BC.h │ │ │ ├── BC4BC5.cpp │ │ │ ├── BC6HBC7.cpp │ │ │ ├── BCDirectCompute.cpp │ │ │ ├── BCDirectCompute.h │ │ │ ├── DDS.h │ │ │ ├── DirectXTex.h │ │ │ ├── DirectXTex.inl │ │ │ ├── DirectXTexCompress.cpp │ │ │ ├── DirectXTexCompressGPU.cpp │ │ │ ├── DirectXTexConvert.cpp │ │ │ ├── DirectXTexD3D11.cpp │ │ │ ├── DirectXTexDDS.cpp │ │ │ ├── DirectXTexFlipRotate.cpp │ │ │ ├── DirectXTexImage.cpp │ │ │ ├── DirectXTexMipmaps.cpp │ │ │ ├── DirectXTexMisc.cpp │ │ │ ├── DirectXTexNormalMaps.cpp │ │ │ ├── DirectXTexP.h │ │ │ ├── DirectXTexPMAlpha.cpp │ │ │ ├── DirectXTexResize.cpp │ │ │ ├── DirectXTexTGA.cpp │ │ │ ├── DirectXTexUtil.cpp │ │ │ ├── DirectXTexWIC.cpp │ │ │ ├── DirectXTex_Desktop_2012.sln │ │ │ ├── DirectXTex_Desktop_2012.vcxproj │ │ │ ├── DirectXTex_Desktop_2012.vcxproj.filters │ │ │ ├── DirectXTex_Desktop_2013.sln │ │ │ ├── DirectXTex_Desktop_2013.vcxproj │ │ │ ├── DirectXTex_Desktop_2013.vcxproj.filters │ │ │ ├── DirectXTex_Desktop_2015.sln │ │ │ ├── DirectXTex_Desktop_2015.vcxproj │ │ │ ├── DirectXTex_Desktop_2015.vcxproj.filters │ │ │ ├── DirectXTex_Windows10.sln │ │ │ ├── DirectXTex_Windows10.vcxproj │ │ │ ├── DirectXTex_Windows10.vcxproj.filters │ │ │ ├── DirectXTex_Windows81.sln │ │ │ ├── DirectXTex_Windows81.vcxproj │ │ │ ├── DirectXTex_Windows81.vcxproj.filters │ │ │ ├── DirectXTex_WindowsPhone81.sln │ │ │ ├── DirectXTex_WindowsPhone81.vcxproj │ │ │ ├── DirectXTex_WindowsPhone81.vcxproj.filters │ │ │ ├── DirectXTex_XboxOneADK.sln │ │ │ ├── DirectXTex_XboxOneADK.vcxproj │ │ │ ├── DirectXTex_XboxOneADK.vcxproj.filters │ │ │ ├── DirectXTex_XboxOneXDK.sln │ │ │ ├── DirectXTex_XboxOneXDK.vcxproj │ │ │ ├── DirectXTex_XboxOneXDK.vcxproj.filters │ │ │ ├── Filters.h │ │ │ ├── Shaders/ │ │ │ │ ├── BC6HEncode.hlsl │ │ │ │ ├── BC7Encode.hlsl │ │ │ │ ├── CompileShaders.cmd │ │ │ │ └── Compiled/ │ │ │ │ ├── BC6HEncode_EncodeBlockCS.inc │ │ │ │ ├── BC6HEncode_TryModeG10CS.inc │ │ │ │ ├── BC6HEncode_TryModeLE10CS.inc │ │ │ │ ├── BC7Encode_EncodeBlockCS.inc │ │ │ │ ├── BC7Encode_TryMode02CS.inc │ │ │ │ ├── BC7Encode_TryMode137CS.inc │ │ │ │ └── BC7Encode_TryMode456CS.inc │ │ │ └── scoped.h │ │ ├── MIT.txt │ │ ├── ReadMe.txt │ │ ├── ScreenGrab/ │ │ │ ├── ScreenGrab.cpp │ │ │ └── ScreenGrab.h │ │ ├── Texassemble/ │ │ │ ├── Texassemble_Desktop_2012.sln │ │ │ ├── Texassemble_Desktop_2012.vcxproj │ │ │ ├── Texassemble_Desktop_2012.vcxproj.filters │ │ │ ├── Texassemble_Desktop_2013.sln │ │ │ ├── Texassemble_Desktop_2013.vcxproj │ │ │ ├── Texassemble_Desktop_2013.vcxproj.filters │ │ │ ├── Texassemble_Desktop_2015.sln │ │ │ ├── Texassemble_Desktop_2015.vcxproj │ │ │ ├── Texassemble_Desktop_2015.vcxproj.filters │ │ │ ├── texassemble.cpp │ │ │ └── texassemble.rc │ │ ├── Texconv/ │ │ │ ├── Texconv.rc │ │ │ ├── Texconv_Desktop_2012.sln │ │ │ ├── Texconv_Desktop_2012.vcxproj │ │ │ ├── Texconv_Desktop_2012.vcxproj.filters │ │ │ ├── Texconv_Desktop_2013.sln │ │ │ ├── Texconv_Desktop_2013.vcxproj │ │ │ ├── Texconv_Desktop_2013.vcxproj.filters │ │ │ ├── Texconv_Desktop_2015.sln │ │ │ ├── Texconv_Desktop_2015.vcxproj │ │ │ ├── Texconv_Desktop_2015.vcxproj.filters │ │ │ └── texconv.cpp │ │ └── WICTextureLoader/ │ │ ├── WICTextureLoader.cpp │ │ └── WICTextureLoader.h │ └── Intel/ │ └── Source/ │ ├── StopWatch.cpp │ ├── StopWatch.h │ ├── ispc_texcomp.cpp │ ├── ispc_texcomp.h │ ├── win32Threads.cpp │ └── win32Threads.h ├── IntelCompressionPlugin/ │ ├── IntelPlugin.cpp │ ├── IntelPlugin.h │ ├── IntelPlugin.r │ ├── IntelPlugin.rc │ ├── IntelPluginName.h │ ├── IntelPluginUIWin.cpp │ ├── IntelPluginUIWin.h │ ├── IntelTextureWorks.vcxproj │ ├── IntelTextureWorks.vcxproj.filters │ ├── PreviewDialog.cpp │ ├── PreviewDialog.h │ ├── SaveOptionsDialog.cpp │ ├── SaveOptionsDialog.h │ ├── kernel.ispc │ └── resource.h ├── IntelTextureWorks.sln ├── PhotoshopScripts/ │ ├── IntelTextureWorks-ConvertCubeMap.jsx │ └── IntelTextureWorks-CubeMapGaussianBlur.jsx ├── README.md ├── Sample Images/ │ ├── CubeMapByLayerTestImage.psd │ ├── HDR.hdr │ ├── baboon-MipMapAsLayers.psd │ ├── mandrill-MipMapAsLayers.psd │ ├── monkey-32bit.hdr │ ├── monkey-MipMapAsLayers.psd │ └── monkey.tif └── license.txt