├── Makefile ├── README.md ├── cube_texture_and_coords.h ├── hello_teapot.bin ├── models.c ├── models.h ├── state.h ├── teapot.obj.dat ├── triangle.c ├── triangle.h └── video.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/README.md -------------------------------------------------------------------------------- /cube_texture_and_coords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/cube_texture_and_coords.h -------------------------------------------------------------------------------- /hello_teapot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/hello_teapot.bin -------------------------------------------------------------------------------- /models.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/models.c -------------------------------------------------------------------------------- /models.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/models.h -------------------------------------------------------------------------------- /state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/state.h -------------------------------------------------------------------------------- /teapot.obj.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/teapot.obj.dat -------------------------------------------------------------------------------- /triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/triangle.c -------------------------------------------------------------------------------- /triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/triangle.h -------------------------------------------------------------------------------- /video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drhastings/cameragl/HEAD/video.c --------------------------------------------------------------------------------