glGenSemaphoresExt function opengl_glext
GLAPI void APIENTRY glGenSemaphoresEXT (GLsizei n, GLuint *semaphores)
Implementation
void glGenSemaphoresExt(int n, Pointer<Uint32> semaphores) {
  final glGenSemaphoresExtAsFunction = _glGenSemaphoresExt
      .cast<
        NativeFunction<Void Function(Uint32 n, Pointer<Uint32> semaphores)>
      >()
      .asFunction<void Function(int n, Pointer<Uint32> semaphores)>();
  return glGenSemaphoresExtAsFunction(n, semaphores);
}