├── .dockerignore ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.md ├── README.md ├── images ├── dolphin.jpg ├── frog.jpg └── monkey.jpg ├── src ├── CMakeLists.txt ├── Dbg.h ├── Filer.cpp ├── Filer.h ├── GifAnim.cpp ├── GifAnim.h ├── Input.cpp ├── Input.h ├── Inputs.h ├── Mapping.cpp ├── Mapping.h ├── Pixer.h ├── Prop.cpp ├── Prop.h ├── Render.cpp ├── Render.h ├── Renders.cpp ├── Renders.h ├── Repository.cpp ├── Repository.h ├── VidAnim.cpp ├── VidAnim.h ├── anim_thumb.cpp ├── dither.cpp ├── frame.proto ├── gd_mod.h ├── gd_topal.c ├── msmap.c ├── msmap.h ├── nonblend.cpp ├── reanimator.cpp └── reblend.cpp └── templates ├── billboard-cityscape.zip ├── flag.zip └── heart-locket.zip /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/README.md -------------------------------------------------------------------------------- /images/dolphin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/images/dolphin.jpg -------------------------------------------------------------------------------- /images/frog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/images/frog.jpg -------------------------------------------------------------------------------- /images/monkey.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/images/monkey.jpg -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Dbg.h -------------------------------------------------------------------------------- /src/Filer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Filer.cpp -------------------------------------------------------------------------------- /src/Filer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Filer.h -------------------------------------------------------------------------------- /src/GifAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/GifAnim.cpp -------------------------------------------------------------------------------- /src/GifAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/GifAnim.h -------------------------------------------------------------------------------- /src/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Input.cpp -------------------------------------------------------------------------------- /src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Input.h -------------------------------------------------------------------------------- /src/Inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Inputs.h -------------------------------------------------------------------------------- /src/Mapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Mapping.cpp -------------------------------------------------------------------------------- /src/Mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Mapping.h -------------------------------------------------------------------------------- /src/Pixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Pixer.h -------------------------------------------------------------------------------- /src/Prop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Prop.cpp -------------------------------------------------------------------------------- /src/Prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Prop.h -------------------------------------------------------------------------------- /src/Render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Render.cpp -------------------------------------------------------------------------------- /src/Render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Render.h -------------------------------------------------------------------------------- /src/Renders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Renders.cpp -------------------------------------------------------------------------------- /src/Renders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Renders.h -------------------------------------------------------------------------------- /src/Repository.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Repository.cpp -------------------------------------------------------------------------------- /src/Repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/Repository.h -------------------------------------------------------------------------------- /src/VidAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/VidAnim.cpp -------------------------------------------------------------------------------- /src/VidAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/VidAnim.h -------------------------------------------------------------------------------- /src/anim_thumb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/anim_thumb.cpp -------------------------------------------------------------------------------- /src/dither.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/dither.cpp -------------------------------------------------------------------------------- /src/frame.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/frame.proto -------------------------------------------------------------------------------- /src/gd_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/gd_mod.h -------------------------------------------------------------------------------- /src/gd_topal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/gd_topal.c -------------------------------------------------------------------------------- /src/msmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/msmap.c -------------------------------------------------------------------------------- /src/msmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/msmap.h -------------------------------------------------------------------------------- /src/nonblend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/nonblend.cpp -------------------------------------------------------------------------------- /src/reanimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/reanimator.cpp -------------------------------------------------------------------------------- /src/reblend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/src/reblend.cpp -------------------------------------------------------------------------------- /templates/billboard-cityscape.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/templates/billboard-cityscape.zip -------------------------------------------------------------------------------- /templates/flag.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/templates/flag.zip -------------------------------------------------------------------------------- /templates/heart-locket.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulfitz/makesweet/HEAD/templates/heart-locket.zip --------------------------------------------------------------------------------