acdemiralp / gl

Header-only C++17 wrapper for OpenGL 4.6 Core Profile.
Boost Software License 1.0
157 stars 11 forks source link

Alternate OpenGL loaders? #1

Closed ghost closed 6 years ago

ghost commented 7 years ago

Hello. Will support of alternative OpenGL loaders (glad, glbinding, GL3W)?

acdemiralp commented 7 years ago

Hello, I will certainly take a look at these this weekend, shouldn't be too hard since the only place glew gets called is gl::initialize(). As long as they provide the necessary OpenGL functions and types, it is trivial to support any of them.

acdemiralp commented 6 years ago

Decision: While this is possible, GLEW is the de facto standard. This library offers a single way of doing things right, which also covers loading of function pointers.