Haxe/hxcpp @:native bindings for GLEW.
This is a linc library.
This library works with the Haxe cpp target only.
haxelib git linc_glew https://github.com/snowkit/linc_glew.git
See LICENSE.md
For a full OpenGL API with GLEW available, see https://github.com/snowkit/linc_opengl
import glew.GLEW;
...
var result = GLEW.init();
if(result != GLEW.OK) {
throw 'Failed to initialize GLEW:' + GLEW.error(result);
}