├── .gitignore ├── CMakeLists.txt ├── README.md ├── examples ├── 01_Triangle │ └── 01_Triangle.c ├── 99_ARB_shaders │ ├── 99_ARB_shaders.c │ └── resources │ │ ├── FragmentShader.txt │ │ └── VertexShader.txt └── glbExamplesCommon.c ├── glbind.h ├── resources └── README.md └── source ├── external ├── tinyxml2.cpp └── tinyxml2.h ├── glbind_build.cpp └── glbind_template.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/README.md -------------------------------------------------------------------------------- /examples/01_Triangle/01_Triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/examples/01_Triangle/01_Triangle.c -------------------------------------------------------------------------------- /examples/99_ARB_shaders/99_ARB_shaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/examples/99_ARB_shaders/99_ARB_shaders.c -------------------------------------------------------------------------------- /examples/99_ARB_shaders/resources/FragmentShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/examples/99_ARB_shaders/resources/FragmentShader.txt -------------------------------------------------------------------------------- /examples/99_ARB_shaders/resources/VertexShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/examples/99_ARB_shaders/resources/VertexShader.txt -------------------------------------------------------------------------------- /examples/glbExamplesCommon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/examples/glbExamplesCommon.c -------------------------------------------------------------------------------- /glbind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/glbind.h -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/resources/README.md -------------------------------------------------------------------------------- /source/external/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/source/external/tinyxml2.cpp -------------------------------------------------------------------------------- /source/external/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/source/external/tinyxml2.h -------------------------------------------------------------------------------- /source/glbind_build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/source/glbind_build.cpp -------------------------------------------------------------------------------- /source/glbind_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mackron/glbind/HEAD/source/glbind_template.h --------------------------------------------------------------------------------