glDrawTransformFeedback function opengl_glext
GLAPI void APIENTRY glDrawTransformFeedback (GLenum mode, GLuint id)
Implementation
void glDrawTransformFeedback(int mode, int id) {
  final glDrawTransformFeedbackAsFunction = _glDrawTransformFeedback
      .cast<NativeFunction<Void Function(Uint32 mode, Uint32 id)>>()
      .asFunction<void Function(int mode, int id)>();
  return glDrawTransformFeedbackAsFunction(mode, id);
}