glLockArraysExt function

void glLockArraysExt(
  1. int first,
  2. int count
)
define glLockArraysEXT GLEW_GET_FUN(__glewLockArraysEXT)
GLEW_FUN_EXPORT PFNGLLOCKARRAYSEXTPROC __glewLockArraysEXT
typedef void (GLAPIENTRY * PFNGLLOCKARRAYSEXTPROC) (GLint first, GLsizei count)

Implementation

void glLockArraysExt(int first, int count) {
  final glLockArraysExtAsFunction = _glLockArraysExt
      .cast<NativeFunction<Void Function(Int32 first, Uint32 count)>>()
      .asFunction<void Function(int first, int count)>();
  return glLockArraysExtAsFunction(first, count);
}