├── .gitignore ├── Anonymous_Pro.ttf ├── LICENSE ├── Makefile ├── README.md ├── commandhandler.c ├── framebuffer.c ├── histogram.c ├── index.html ├── main.c ├── savepng.c ├── savepng.h ├── savepng_README.md ├── server.c └── stb_truetype.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/.gitignore -------------------------------------------------------------------------------- /Anonymous_Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/Anonymous_Pro.ttf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/README.md -------------------------------------------------------------------------------- /commandhandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/commandhandler.c -------------------------------------------------------------------------------- /framebuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/framebuffer.c -------------------------------------------------------------------------------- /histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/histogram.c -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/index.html -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/main.c -------------------------------------------------------------------------------- /savepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/savepng.c -------------------------------------------------------------------------------- /savepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/savepng.h -------------------------------------------------------------------------------- /savepng_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/savepng_README.md -------------------------------------------------------------------------------- /server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/server.c -------------------------------------------------------------------------------- /stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larsmm/pixelflut/HEAD/stb_truetype.h --------------------------------------------------------------------------------