void
glDrawTransformFeedbackStream(
 - int mode, 
- int id, 
- int stream
) 
    
  GLAPI void APIENTRY glDrawTransformFeedbackStream (GLenum mode, GLuint id, GLuint stream)
 
    
  Implementation
  void glDrawTransformFeedbackStream(int mode, int id, int stream) {
  final glDrawTransformFeedbackStreamAsFunction = _glDrawTransformFeedbackStream
      .cast<
        NativeFunction<Void Function(Uint32 mode, Uint32 id, Uint32 stream)>
      >()
      .asFunction<void Function(int mode, int id, int stream)>();
  return glDrawTransformFeedbackStreamAsFunction(mode, id, stream);
}