├── .clang-format ├── .gitignore ├── 3rdparty └── gl3w │ ├── include │ └── GL │ │ ├── gl3w.h │ │ ├── glcorearb.h │ │ └── glext.h │ └── src │ └── gl3w.c ├── CMakeLists.txt ├── LICENCE ├── Readme.md ├── cmake └── FindGLFW.cmake ├── example.cpp ├── example_gl.cpp └── tinyddsloader.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.vscode/ipch/56b18ea1281d400f 3 | -------------------------------------------------------------------------------- /3rdparty/gl3w/include/GL/gl3w.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/3rdparty/gl3w/include/GL/gl3w.h -------------------------------------------------------------------------------- /3rdparty/gl3w/include/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/3rdparty/gl3w/include/GL/glcorearb.h -------------------------------------------------------------------------------- /3rdparty/gl3w/include/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/3rdparty/gl3w/include/GL/glext.h -------------------------------------------------------------------------------- /3rdparty/gl3w/src/gl3w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/3rdparty/gl3w/src/gl3w.c -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/LICENCE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/Readme.md -------------------------------------------------------------------------------- /cmake/FindGLFW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/cmake/FindGLFW.cmake -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/example.cpp -------------------------------------------------------------------------------- /example_gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/example_gl.cpp -------------------------------------------------------------------------------- /tinyddsloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benikabocha/tinyddsloader/HEAD/tinyddsloader.h --------------------------------------------------------------------------------