├── .gitignore ├── CMakeLists.txt ├── Changelog ├── INSTALL ├── LICENSE ├── LIMITATIONS ├── Makefile ├── README ├── examples ├── CMakeLists.txt ├── Makefile ├── Makefile~ ├── gears.c └── triangle.c ├── include ├── GL │ ├── gl.h │ └── glu.h ├── zbuffer.h └── zfeatures.h ├── makeinclude └── src ├── CMakeLists.txt ├── Makefile ├── api.c ├── arrays.c ├── clear.c ├── clip.c ├── error.c ├── get.c ├── glu.c ├── image_util.c ├── init.c ├── light.c ├── list.c ├── matrix.c ├── memory.c ├── misc.c ├── msghandling.c ├── msghandling.h ├── opinfo.h ├── oscontext.c ├── oscontext.h ├── select.c ├── specbuf.c ├── specbuf.h ├── texture.c ├── vertex.c ├── zbuffer.c ├── zdither.c ├── zgl.h ├── zline.c ├── zline.h ├── zmath.c ├── zmath.h ├── ztriangle.c └── ztriangle.h /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/Changelog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/LICENSE -------------------------------------------------------------------------------- /LIMITATIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/LIMITATIONS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/README -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/Makefile~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/examples/Makefile~ -------------------------------------------------------------------------------- /examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/examples/gears.c -------------------------------------------------------------------------------- /examples/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/examples/triangle.c -------------------------------------------------------------------------------- /include/GL/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/include/GL/gl.h -------------------------------------------------------------------------------- /include/GL/glu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/include/GL/glu.h -------------------------------------------------------------------------------- /include/zbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/include/zbuffer.h -------------------------------------------------------------------------------- /include/zfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/include/zfeatures.h -------------------------------------------------------------------------------- /makeinclude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/makeinclude -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/api.c -------------------------------------------------------------------------------- /src/arrays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/arrays.c -------------------------------------------------------------------------------- /src/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/clear.c -------------------------------------------------------------------------------- /src/clip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/clip.c -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/error.c -------------------------------------------------------------------------------- /src/get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/get.c -------------------------------------------------------------------------------- /src/glu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/glu.c -------------------------------------------------------------------------------- /src/image_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/image_util.c -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/init.c -------------------------------------------------------------------------------- /src/light.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/light.c -------------------------------------------------------------------------------- /src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/list.c -------------------------------------------------------------------------------- /src/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/matrix.c -------------------------------------------------------------------------------- /src/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/memory.c -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/msghandling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/msghandling.c -------------------------------------------------------------------------------- /src/msghandling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/msghandling.h -------------------------------------------------------------------------------- /src/opinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/opinfo.h -------------------------------------------------------------------------------- /src/oscontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/oscontext.c -------------------------------------------------------------------------------- /src/oscontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/oscontext.h -------------------------------------------------------------------------------- /src/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/select.c -------------------------------------------------------------------------------- /src/specbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/specbuf.c -------------------------------------------------------------------------------- /src/specbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/specbuf.h -------------------------------------------------------------------------------- /src/texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/texture.c -------------------------------------------------------------------------------- /src/vertex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/vertex.c -------------------------------------------------------------------------------- /src/zbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zbuffer.c -------------------------------------------------------------------------------- /src/zdither.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zdither.c -------------------------------------------------------------------------------- /src/zgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zgl.h -------------------------------------------------------------------------------- /src/zline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zline.c -------------------------------------------------------------------------------- /src/zline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zline.h -------------------------------------------------------------------------------- /src/zmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zmath.c -------------------------------------------------------------------------------- /src/zmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/zmath.h -------------------------------------------------------------------------------- /src/ztriangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/ztriangle.c -------------------------------------------------------------------------------- /src/ztriangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimperator/TinySDGL/HEAD/src/ztriangle.h --------------------------------------------------------------------------------