glewInit function

int glewInit()

API

GLEWAPI GLenum GLEWAPIENTRY glewInit (void)

Implementation

int glewInit() {
  final glewInitLookupFunction =
      libGLEW.lookupFunction<Uint32 Function(), int Function()>('glewInit');
  return glewInitLookupFunction();
}