├── .gitignore ├── Makefile ├── Makefile.pc ├── README.md ├── Tutorial ├── Lesson 1 - Triangles.md ├── Lesson 2 - Textures.md ├── Lesson 3 - Vertex Arrays.md └── Lesson 4 - Converting Wavefront obj.md ├── fastmath.cpp ├── fastmath.h ├── fix.h ├── gl.cpp ├── gl.h ├── glconfig_example.h ├── gldrawarray.cpp ├── gldrawarray.h ├── texturetools.cpp ├── texturetools.h ├── tools ├── obj2ngl.py └── tex2ngl.py └── triangle.inc.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Makefile.pc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial/Lesson 1 - Triangles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Tutorial/Lesson 1 - Triangles.md -------------------------------------------------------------------------------- /Tutorial/Lesson 2 - Textures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Tutorial/Lesson 2 - Textures.md -------------------------------------------------------------------------------- /Tutorial/Lesson 3 - Vertex Arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Tutorial/Lesson 3 - Vertex Arrays.md -------------------------------------------------------------------------------- /Tutorial/Lesson 4 - Converting Wavefront obj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/Tutorial/Lesson 4 - Converting Wavefront obj.md -------------------------------------------------------------------------------- /fastmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/fastmath.cpp -------------------------------------------------------------------------------- /fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/fastmath.h -------------------------------------------------------------------------------- /fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/fix.h -------------------------------------------------------------------------------- /gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/gl.cpp -------------------------------------------------------------------------------- /gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/gl.h -------------------------------------------------------------------------------- /glconfig_example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/glconfig_example.h -------------------------------------------------------------------------------- /gldrawarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/gldrawarray.cpp -------------------------------------------------------------------------------- /gldrawarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/gldrawarray.h -------------------------------------------------------------------------------- /texturetools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/texturetools.cpp -------------------------------------------------------------------------------- /texturetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/texturetools.h -------------------------------------------------------------------------------- /tools/obj2ngl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/tools/obj2ngl.py -------------------------------------------------------------------------------- /tools/tex2ngl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/tools/tex2ngl.py -------------------------------------------------------------------------------- /triangle.inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vogtinator/nGL/HEAD/triangle.inc.h --------------------------------------------------------------------------------