├── README.md ├── example ├── Makefile ├── data │ ├── test.vsh │ ├── texture.bin │ └── texture2.bin └── source │ ├── main.c │ ├── math.c │ └── math.h └── libctrgl ├── Makefile ├── buildscripts └── ctrgl.py ├── include ├── gl.h ├── gl_ctr.h └── gl_enums.h └── source ├── gl.c ├── gl_ctrgl_.h ├── gl_helperfunctions_.h ├── gl_matrix_.h └── gl_setup_.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/README.md -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/data/test.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/data/test.vsh -------------------------------------------------------------------------------- /example/data/texture.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/data/texture.bin -------------------------------------------------------------------------------- /example/data/texture2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/data/texture2.bin -------------------------------------------------------------------------------- /example/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/source/main.c -------------------------------------------------------------------------------- /example/source/math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/source/math.c -------------------------------------------------------------------------------- /example/source/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/example/source/math.h -------------------------------------------------------------------------------- /libctrgl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/Makefile -------------------------------------------------------------------------------- /libctrgl/buildscripts/ctrgl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/buildscripts/ctrgl.py -------------------------------------------------------------------------------- /libctrgl/include/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/include/gl.h -------------------------------------------------------------------------------- /libctrgl/include/gl_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/include/gl_ctr.h -------------------------------------------------------------------------------- /libctrgl/include/gl_enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/include/gl_enums.h -------------------------------------------------------------------------------- /libctrgl/source/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/source/gl.c -------------------------------------------------------------------------------- /libctrgl/source/gl_ctrgl_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/source/gl_ctrgl_.h -------------------------------------------------------------------------------- /libctrgl/source/gl_helperfunctions_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/source/gl_helperfunctions_.h -------------------------------------------------------------------------------- /libctrgl/source/gl_matrix_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/source/gl_matrix_.h -------------------------------------------------------------------------------- /libctrgl/source/gl_setup_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minexew/ctrgl/HEAD/libctrgl/source/gl_setup_.h --------------------------------------------------------------------------------