├── .appveyor.yml ├── .gitignore ├── .gitmodules ├── Externals ├── Compressonator │ ├── CMP_Core │ │ ├── BC1_Encode_kernel.cpp │ │ ├── BC1_Encode_kernel.h │ │ ├── BC2_Encode_kernel.cpp │ │ ├── BC2_Encode_kernel.h │ │ ├── BC3_Encode_kernel.cpp │ │ ├── BC3_Encode_kernel.h │ │ ├── BC4_Encode_kernel.cpp │ │ ├── BC4_Encode_kernel.h │ │ ├── BC5_Encode_kernel.cpp │ │ ├── BC5_Encode_kernel.h │ │ ├── BC6_Encode_kernel.cpp │ │ ├── BC6_Encode_kernel.h │ │ ├── BC7_Encode_Kernel.cpp │ │ ├── BC7_Encode_Kernel.h │ │ ├── BCn_Common_Kernel.h │ │ ├── CMP_Core.h │ │ ├── Common_Def.h │ │ ├── cmp_math_func.h │ │ └── cmp_math_vec4.h │ └── Readme.txt ├── libpng-1.6.37 │ ├── example.c │ ├── png.c │ ├── png.h │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── stb │ ├── stb_image.h │ ├── stb_image_resize.h │ └── stb_image_write.h ├── tinyexr │ └── tinyexr.h └── zlib-1.2.11 │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── LICENSE ├── README.md ├── Resources ├── Fonts │ ├── Consolas-Bold.ttf │ └── Consolas.ttf └── Icons │ ├── Convert_16.png │ ├── Copy_16.png │ ├── CurrentMipMap_16.png │ ├── Cut_16.png │ ├── Default.png │ ├── Default_24.png │ ├── Exit_16.png │ ├── Help_16.png │ ├── Log_16.png │ ├── MipMap_16.png │ ├── MissingMipMap_16.png │ ├── New_16.png │ ├── Next_16.png │ ├── Open_16.png │ ├── Paste_16.png │ ├── Previous_16.png │ ├── Resize_16.png │ ├── SaveAs_16.png │ ├── Save_16.png │ └── Swizzle_16.png ├── scripts ├── EmbedResources.bat ├── InitSubmodules.bat ├── Texeled.natvis ├── UpdateVersion.bat ├── build 2017.bat ├── build.bat └── genie.lua └── src ├── Callback.h ├── Core ├── Array.h ├── Assert.cpp ├── Assert.h ├── Clock.cpp ├── Clock.h ├── ErrorCode.cpp ├── ErrorCode.h ├── Logger.cpp ├── Logger.h ├── LoggerOutputerConsole.cpp ├── LoggerOutputerConsole.h ├── Memory.cpp ├── Memory.h ├── String.cpp ├── String.h ├── StringBuilder.cpp ├── StringBuilder.h ├── StringUtils.cpp ├── StringUtils.h └── Win32 │ └── Clock.cpp ├── Default.rc ├── DefaultResource.h ├── GraphicResources ├── SamplerState.cpp ├── SamplerState.h ├── ShaderUtils.cpp ├── ShaderUtils.h ├── Texture2D.cpp └── Texture2D.h ├── Graphics ├── PixelFormat.cpp ├── PixelFormat.h ├── PixelFormatConverters.cpp ├── PixelFormatConverters.h ├── PixelFormatConvertersCompressed.cpp ├── PixelFormatConvertersCompressed.h ├── Texture.cpp ├── Texture.h ├── TextureUtils.cpp └── TextureUtils.h ├── IO ├── Clipboard.h ├── FileStream.cpp ├── FileStream.h ├── FileSystem.h ├── MemoryStream.cpp ├── MemoryStream.h ├── Stream.cpp ├── Stream.h └── Win32 │ ├── Clipboard.cpp │ └── FileSystem.cpp ├── Icon.ico ├── ImGuiUtils.cpp ├── ImGuiUtils.h ├── Implementations ├── stb.cpp └── tinyexr.cpp ├── ImwConfig.h ├── ImwWindowManagerCustom.cpp ├── ImwWindowManagerCustom.h ├── Math ├── Arithmetic.cpp ├── Arithmetic.h ├── Constants.h ├── Point.h └── Vertex.h ├── Menus.cpp ├── Menus.h ├── PlatformUtils.cpp ├── PlatformUtils.h ├── Program.cpp ├── Program.h ├── ShortKeyManager.cpp ├── ShortKeyManager.h ├── StatusBars.cpp ├── StatusBars.h ├── Texture ├── DDS.h ├── KTX.h ├── TextureLoader.cpp ├── TextureLoader.h ├── TextureLoaders │ ├── TextureLoaderDDS.cpp │ ├── TextureLoaderDDS.h │ ├── TextureLoaderEXR.cpp │ ├── TextureLoaderEXR.h │ ├── TextureLoaderKTX.cpp │ ├── TextureLoaderKTX.h │ ├── TextureLoaderPNG.cpp │ ├── TextureLoaderPNG.h │ ├── TextureLoaderSTBI.cpp │ └── TextureLoaderSTBI.h ├── TextureWriter.cpp ├── TextureWriter.h └── TextureWriters │ ├── TextureWriterDDS.cpp │ ├── TextureWriterDDS.h │ ├── TextureWriterEXR.cpp │ ├── TextureWriterEXR.h │ ├── TextureWriterPNG.cpp │ ├── TextureWriterPNG.h │ ├── TextureWriterTGA.cpp │ └── TextureWriterTGA.h ├── Toolbar.cpp ├── Toolbar.h ├── Version.h ├── Windows ├── AboutWindow.cpp ├── AboutWindow.h ├── LoggerWindow.cpp ├── LoggerWindow.h ├── ShortkeyWindow.cpp ├── ShortkeyWindow.h ├── WorkAreaWindow.cpp └── WorkAreaWindow.h └── main.cpp /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/.gitmodules -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC1_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC1_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC1_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC1_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC2_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC2_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC2_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC2_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC3_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC3_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC3_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC3_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC4_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC4_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC4_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC4_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC5_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC5_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC5_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC5_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC6_Encode_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC6_Encode_kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC6_Encode_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC6_Encode_kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC7_Encode_Kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC7_Encode_Kernel.cpp -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BC7_Encode_Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BC7_Encode_Kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/BCn_Common_Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/BCn_Common_Kernel.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/CMP_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/CMP_Core.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/Common_Def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/Common_Def.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/cmp_math_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/cmp_math_func.h -------------------------------------------------------------------------------- /Externals/Compressonator/CMP_Core/cmp_math_vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/CMP_Core/cmp_math_vec4.h -------------------------------------------------------------------------------- /Externals/Compressonator/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/Compressonator/Readme.txt -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/example.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/png.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/png.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngconf.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngdebug.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngerror.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngget.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pnginfo.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pnglibconf.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngmem.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngpread.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngpriv.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngread.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngrio.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngrtran.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngrutil.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngset.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngstruct.h -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngtrans.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngwio.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngwrite.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngwtran.c -------------------------------------------------------------------------------- /Externals/libpng-1.6.37/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/libpng-1.6.37/pngwutil.c -------------------------------------------------------------------------------- /Externals/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/stb/stb_image.h -------------------------------------------------------------------------------- /Externals/stb/stb_image_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/stb/stb_image_resize.h -------------------------------------------------------------------------------- /Externals/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/stb/stb_image_write.h -------------------------------------------------------------------------------- /Externals/tinyexr/tinyexr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/tinyexr/tinyexr.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/adler32.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/compress.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/crc32.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/crc32.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/deflate.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/deflate.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/gzclose.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/gzguts.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/gzlib.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/gzread.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/gzwrite.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/infback.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inffast.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inffast.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inffixed.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inflate.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inflate.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inftrees.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/inftrees.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/trees.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/trees.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/uncompr.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/zconf.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/zlib.h -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/zutil.c -------------------------------------------------------------------------------- /Externals/zlib-1.2.11/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Externals/zlib-1.2.11/zutil.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Fonts/Consolas-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Fonts/Consolas-Bold.ttf -------------------------------------------------------------------------------- /Resources/Fonts/Consolas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Fonts/Consolas.ttf -------------------------------------------------------------------------------- /Resources/Icons/Convert_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Convert_16.png -------------------------------------------------------------------------------- /Resources/Icons/Copy_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Copy_16.png -------------------------------------------------------------------------------- /Resources/Icons/CurrentMipMap_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/CurrentMipMap_16.png -------------------------------------------------------------------------------- /Resources/Icons/Cut_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Cut_16.png -------------------------------------------------------------------------------- /Resources/Icons/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Default.png -------------------------------------------------------------------------------- /Resources/Icons/Default_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Default_24.png -------------------------------------------------------------------------------- /Resources/Icons/Exit_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Exit_16.png -------------------------------------------------------------------------------- /Resources/Icons/Help_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Help_16.png -------------------------------------------------------------------------------- /Resources/Icons/Log_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Log_16.png -------------------------------------------------------------------------------- /Resources/Icons/MipMap_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/MipMap_16.png -------------------------------------------------------------------------------- /Resources/Icons/MissingMipMap_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/MissingMipMap_16.png -------------------------------------------------------------------------------- /Resources/Icons/New_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/New_16.png -------------------------------------------------------------------------------- /Resources/Icons/Next_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Next_16.png -------------------------------------------------------------------------------- /Resources/Icons/Open_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Open_16.png -------------------------------------------------------------------------------- /Resources/Icons/Paste_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Paste_16.png -------------------------------------------------------------------------------- /Resources/Icons/Previous_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Previous_16.png -------------------------------------------------------------------------------- /Resources/Icons/Resize_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Resize_16.png -------------------------------------------------------------------------------- /Resources/Icons/SaveAs_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/SaveAs_16.png -------------------------------------------------------------------------------- /Resources/Icons/Save_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Save_16.png -------------------------------------------------------------------------------- /Resources/Icons/Swizzle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/Resources/Icons/Swizzle_16.png -------------------------------------------------------------------------------- /scripts/EmbedResources.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/scripts/EmbedResources.bat -------------------------------------------------------------------------------- /scripts/InitSubmodules.bat: -------------------------------------------------------------------------------- 1 | git submodule update --init --recursive 2 | pause -------------------------------------------------------------------------------- /scripts/Texeled.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/scripts/Texeled.natvis -------------------------------------------------------------------------------- /scripts/UpdateVersion.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/scripts/UpdateVersion.bat -------------------------------------------------------------------------------- /scripts/build 2017.bat: -------------------------------------------------------------------------------- 1 | "%~dp0\build.bat" vs2017 -------------------------------------------------------------------------------- /scripts/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/scripts/build.bat -------------------------------------------------------------------------------- /scripts/genie.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/scripts/genie.lua -------------------------------------------------------------------------------- /src/Callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Callback.h -------------------------------------------------------------------------------- /src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Array.h -------------------------------------------------------------------------------- /src/Core/Assert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Assert.cpp -------------------------------------------------------------------------------- /src/Core/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Assert.h -------------------------------------------------------------------------------- /src/Core/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Clock.cpp -------------------------------------------------------------------------------- /src/Core/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Clock.h -------------------------------------------------------------------------------- /src/Core/ErrorCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/ErrorCode.cpp -------------------------------------------------------------------------------- /src/Core/ErrorCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/ErrorCode.h -------------------------------------------------------------------------------- /src/Core/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Logger.cpp -------------------------------------------------------------------------------- /src/Core/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Logger.h -------------------------------------------------------------------------------- /src/Core/LoggerOutputerConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/LoggerOutputerConsole.cpp -------------------------------------------------------------------------------- /src/Core/LoggerOutputerConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/LoggerOutputerConsole.h -------------------------------------------------------------------------------- /src/Core/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Memory.cpp -------------------------------------------------------------------------------- /src/Core/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Memory.h -------------------------------------------------------------------------------- /src/Core/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/String.cpp -------------------------------------------------------------------------------- /src/Core/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/String.h -------------------------------------------------------------------------------- /src/Core/StringBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/StringBuilder.cpp -------------------------------------------------------------------------------- /src/Core/StringBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/StringBuilder.h -------------------------------------------------------------------------------- /src/Core/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/StringUtils.cpp -------------------------------------------------------------------------------- /src/Core/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/StringUtils.h -------------------------------------------------------------------------------- /src/Core/Win32/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Core/Win32/Clock.cpp -------------------------------------------------------------------------------- /src/Default.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Default.rc -------------------------------------------------------------------------------- /src/DefaultResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/DefaultResource.h -------------------------------------------------------------------------------- /src/GraphicResources/SamplerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/SamplerState.cpp -------------------------------------------------------------------------------- /src/GraphicResources/SamplerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/SamplerState.h -------------------------------------------------------------------------------- /src/GraphicResources/ShaderUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/ShaderUtils.cpp -------------------------------------------------------------------------------- /src/GraphicResources/ShaderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/ShaderUtils.h -------------------------------------------------------------------------------- /src/GraphicResources/Texture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/Texture2D.cpp -------------------------------------------------------------------------------- /src/GraphicResources/Texture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/GraphicResources/Texture2D.h -------------------------------------------------------------------------------- /src/Graphics/PixelFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormat.cpp -------------------------------------------------------------------------------- /src/Graphics/PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormat.h -------------------------------------------------------------------------------- /src/Graphics/PixelFormatConverters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormatConverters.cpp -------------------------------------------------------------------------------- /src/Graphics/PixelFormatConverters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormatConverters.h -------------------------------------------------------------------------------- /src/Graphics/PixelFormatConvertersCompressed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormatConvertersCompressed.cpp -------------------------------------------------------------------------------- /src/Graphics/PixelFormatConvertersCompressed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/PixelFormatConvertersCompressed.h -------------------------------------------------------------------------------- /src/Graphics/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/Texture.cpp -------------------------------------------------------------------------------- /src/Graphics/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/Texture.h -------------------------------------------------------------------------------- /src/Graphics/TextureUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/TextureUtils.cpp -------------------------------------------------------------------------------- /src/Graphics/TextureUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Graphics/TextureUtils.h -------------------------------------------------------------------------------- /src/IO/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/Clipboard.h -------------------------------------------------------------------------------- /src/IO/FileStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/FileStream.cpp -------------------------------------------------------------------------------- /src/IO/FileStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/FileStream.h -------------------------------------------------------------------------------- /src/IO/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/FileSystem.h -------------------------------------------------------------------------------- /src/IO/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/MemoryStream.cpp -------------------------------------------------------------------------------- /src/IO/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/MemoryStream.h -------------------------------------------------------------------------------- /src/IO/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/Stream.cpp -------------------------------------------------------------------------------- /src/IO/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/Stream.h -------------------------------------------------------------------------------- /src/IO/Win32/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/Win32/Clipboard.cpp -------------------------------------------------------------------------------- /src/IO/Win32/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/IO/Win32/FileSystem.cpp -------------------------------------------------------------------------------- /src/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Icon.ico -------------------------------------------------------------------------------- /src/ImGuiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ImGuiUtils.cpp -------------------------------------------------------------------------------- /src/ImGuiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ImGuiUtils.h -------------------------------------------------------------------------------- /src/Implementations/stb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Implementations/stb.cpp -------------------------------------------------------------------------------- /src/Implementations/tinyexr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Implementations/tinyexr.cpp -------------------------------------------------------------------------------- /src/ImwConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ImwConfig.h -------------------------------------------------------------------------------- /src/ImwWindowManagerCustom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ImwWindowManagerCustom.cpp -------------------------------------------------------------------------------- /src/ImwWindowManagerCustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ImwWindowManagerCustom.h -------------------------------------------------------------------------------- /src/Math/Arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Math/Arithmetic.cpp -------------------------------------------------------------------------------- /src/Math/Arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Math/Arithmetic.h -------------------------------------------------------------------------------- /src/Math/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Math/Constants.h -------------------------------------------------------------------------------- /src/Math/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Math/Point.h -------------------------------------------------------------------------------- /src/Math/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Math/Vertex.h -------------------------------------------------------------------------------- /src/Menus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Menus.cpp -------------------------------------------------------------------------------- /src/Menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Menus.h -------------------------------------------------------------------------------- /src/PlatformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/PlatformUtils.cpp -------------------------------------------------------------------------------- /src/PlatformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/PlatformUtils.h -------------------------------------------------------------------------------- /src/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Program.cpp -------------------------------------------------------------------------------- /src/Program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Program.h -------------------------------------------------------------------------------- /src/ShortKeyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ShortKeyManager.cpp -------------------------------------------------------------------------------- /src/ShortKeyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/ShortKeyManager.h -------------------------------------------------------------------------------- /src/StatusBars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/StatusBars.cpp -------------------------------------------------------------------------------- /src/StatusBars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/StatusBars.h -------------------------------------------------------------------------------- /src/Texture/DDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/DDS.h -------------------------------------------------------------------------------- /src/Texture/KTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/KTX.h -------------------------------------------------------------------------------- /src/Texture/TextureLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoader.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoader.h -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderDDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderDDS.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderDDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderDDS.h -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderEXR.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderEXR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderEXR.h -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderKTX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderKTX.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderKTX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderKTX.h -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderPNG.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderPNG.h -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderSTBI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderSTBI.cpp -------------------------------------------------------------------------------- /src/Texture/TextureLoaders/TextureLoaderSTBI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureLoaders/TextureLoaderSTBI.h -------------------------------------------------------------------------------- /src/Texture/TextureWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriter.cpp -------------------------------------------------------------------------------- /src/Texture/TextureWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriter.h -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterDDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterDDS.cpp -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterDDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterDDS.h -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterEXR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterEXR.cpp -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterEXR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterEXR.h -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterPNG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterPNG.cpp -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterPNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterPNG.h -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterTGA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterTGA.cpp -------------------------------------------------------------------------------- /src/Texture/TextureWriters/TextureWriterTGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Texture/TextureWriters/TextureWriterTGA.h -------------------------------------------------------------------------------- /src/Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Toolbar.cpp -------------------------------------------------------------------------------- /src/Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Toolbar.h -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Version.h -------------------------------------------------------------------------------- /src/Windows/AboutWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/AboutWindow.cpp -------------------------------------------------------------------------------- /src/Windows/AboutWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/AboutWindow.h -------------------------------------------------------------------------------- /src/Windows/LoggerWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/LoggerWindow.cpp -------------------------------------------------------------------------------- /src/Windows/LoggerWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/LoggerWindow.h -------------------------------------------------------------------------------- /src/Windows/ShortkeyWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/ShortkeyWindow.cpp -------------------------------------------------------------------------------- /src/Windows/ShortkeyWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/ShortkeyWindow.h -------------------------------------------------------------------------------- /src/Windows/WorkAreaWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/WorkAreaWindow.cpp -------------------------------------------------------------------------------- /src/Windows/WorkAreaWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/Windows/WorkAreaWindow.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thennequin/Texeled/HEAD/src/main.cpp --------------------------------------------------------------------------------