├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── appveyor.yml ├── bitbucket-pipelines.yml ├── src ├── Atlas │ ├── AtlasPacker.cpp │ ├── AtlasPacker.h │ ├── AtlasSize.cpp │ ├── AtlasSize.h │ ├── KDNode.cpp │ ├── KDNode.h │ ├── KDTreePacker.cpp │ ├── KDTreePacker.h │ ├── SimplePacker.cpp │ └── SimplePacker.h ├── Config.cpp ├── Config.h ├── File.cpp ├── File.h ├── FileList.cpp ├── FileList.h ├── Image.cpp ├── Image.h ├── ImageList.cpp ├── ImageList.h ├── ImageSaver.cpp ├── ImageSaver.h ├── Log.cpp ├── Log.h ├── Trim.cpp ├── Trim.h ├── Types │ ├── Bitmap.cpp │ ├── Bitmap.h │ └── Types.h ├── Utils.cpp ├── Utils.h ├── main.cpp └── stb │ ├── LICENSE │ ├── README.md │ ├── stb_image.h │ └── stb_image_write.h ├── test.sh └── third-party └── fmtlib ├── CMakeLists.txt ├── ChangeLog.md ├── LICENSE ├── README.rst ├── include └── fmt │ ├── args.h │ ├── chrono.h │ ├── color.h │ ├── compile.h │ ├── core.h │ ├── format-inl.h │ ├── format.h │ ├── os.h │ ├── ostream.h │ ├── printf.h │ ├── ranges.h │ ├── std.h │ └── xchar.h └── src ├── fmt.cc ├── format.cc └── os.cc /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bitbucket-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/bitbucket-pipelines.yml -------------------------------------------------------------------------------- /src/Atlas/AtlasPacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/AtlasPacker.cpp -------------------------------------------------------------------------------- /src/Atlas/AtlasPacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/AtlasPacker.h -------------------------------------------------------------------------------- /src/Atlas/AtlasSize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/AtlasSize.cpp -------------------------------------------------------------------------------- /src/Atlas/AtlasSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/AtlasSize.h -------------------------------------------------------------------------------- /src/Atlas/KDNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/KDNode.cpp -------------------------------------------------------------------------------- /src/Atlas/KDNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/KDNode.h -------------------------------------------------------------------------------- /src/Atlas/KDTreePacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/KDTreePacker.cpp -------------------------------------------------------------------------------- /src/Atlas/KDTreePacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/KDTreePacker.h -------------------------------------------------------------------------------- /src/Atlas/SimplePacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/SimplePacker.cpp -------------------------------------------------------------------------------- /src/Atlas/SimplePacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Atlas/SimplePacker.h -------------------------------------------------------------------------------- /src/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Config.cpp -------------------------------------------------------------------------------- /src/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Config.h -------------------------------------------------------------------------------- /src/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/File.cpp -------------------------------------------------------------------------------- /src/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/File.h -------------------------------------------------------------------------------- /src/FileList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/FileList.cpp -------------------------------------------------------------------------------- /src/FileList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/FileList.h -------------------------------------------------------------------------------- /src/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Image.cpp -------------------------------------------------------------------------------- /src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Image.h -------------------------------------------------------------------------------- /src/ImageList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/ImageList.cpp -------------------------------------------------------------------------------- /src/ImageList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/ImageList.h -------------------------------------------------------------------------------- /src/ImageSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/ImageSaver.cpp -------------------------------------------------------------------------------- /src/ImageSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/ImageSaver.h -------------------------------------------------------------------------------- /src/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Log.cpp -------------------------------------------------------------------------------- /src/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Log.h -------------------------------------------------------------------------------- /src/Trim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Trim.cpp -------------------------------------------------------------------------------- /src/Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Trim.h -------------------------------------------------------------------------------- /src/Types/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Types/Bitmap.cpp -------------------------------------------------------------------------------- /src/Types/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Types/Bitmap.h -------------------------------------------------------------------------------- /src/Types/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Types/Types.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/stb/LICENSE -------------------------------------------------------------------------------- /src/stb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/stb/README.md -------------------------------------------------------------------------------- /src/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/stb/stb_image.h -------------------------------------------------------------------------------- /src/stb/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/src/stb/stb_image_write.h -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/test.sh -------------------------------------------------------------------------------- /third-party/fmtlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/CMakeLists.txt -------------------------------------------------------------------------------- /third-party/fmtlib/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/ChangeLog.md -------------------------------------------------------------------------------- /third-party/fmtlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/LICENSE -------------------------------------------------------------------------------- /third-party/fmtlib/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/README.rst -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/args.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/chrono.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/color.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/compile.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/core.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/format-inl.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/format.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/os.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/ostream.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/printf.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/ranges.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/std.h -------------------------------------------------------------------------------- /third-party/fmtlib/include/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/include/fmt/xchar.h -------------------------------------------------------------------------------- /third-party/fmtlib/src/fmt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/src/fmt.cc -------------------------------------------------------------------------------- /third-party/fmtlib/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/src/format.cc -------------------------------------------------------------------------------- /third-party/fmtlib/src/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reybits/texture-packer/HEAD/third-party/fmtlib/src/os.cc --------------------------------------------------------------------------------