├── Build.xml ├── Makefile ├── README.md ├── haxelib.json ├── include ├── gl.h └── utils.h ├── ndll └── Linux64 │ └── ogl.ndll ├── ogl ├── DebugDraw.hx ├── GL.hx ├── GLArray.hx ├── GLM.hx ├── Macros.hx └── NativeBinding.hx ├── samples ├── Makefile ├── Sample.hx ├── Sample1.hx ├── Sample2.hx ├── Sample3.hx ├── Sample4.hx ├── Sample5.hx ├── Sample6.hx └── cube_texture.png └── src ├── gl.cpp └── main.cpp /Build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/Build.xml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/README.md -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/haxelib.json -------------------------------------------------------------------------------- /include/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/include/gl.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/include/utils.h -------------------------------------------------------------------------------- /ndll/Linux64/ogl.ndll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ndll/Linux64/ogl.ndll -------------------------------------------------------------------------------- /ogl/DebugDraw.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/DebugDraw.hx -------------------------------------------------------------------------------- /ogl/GL.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/GL.hx -------------------------------------------------------------------------------- /ogl/GLArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/GLArray.hx -------------------------------------------------------------------------------- /ogl/GLM.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/GLM.hx -------------------------------------------------------------------------------- /ogl/Macros.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/Macros.hx -------------------------------------------------------------------------------- /ogl/NativeBinding.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/ogl/NativeBinding.hx -------------------------------------------------------------------------------- /samples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Makefile -------------------------------------------------------------------------------- /samples/Sample.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample.hx -------------------------------------------------------------------------------- /samples/Sample1.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample1.hx -------------------------------------------------------------------------------- /samples/Sample2.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample2.hx -------------------------------------------------------------------------------- /samples/Sample3.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample3.hx -------------------------------------------------------------------------------- /samples/Sample4.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample4.hx -------------------------------------------------------------------------------- /samples/Sample5.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample5.hx -------------------------------------------------------------------------------- /samples/Sample6.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/Sample6.hx -------------------------------------------------------------------------------- /samples/cube_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/samples/cube_texture.png -------------------------------------------------------------------------------- /src/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/src/gl.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deltaluca/hx-ogl/HEAD/src/main.cpp --------------------------------------------------------------------------------