glDrawTransformFeedbackStream function opengl_glext

void glDrawTransformFeedbackStream(
  1. int mode,
  2. int id,
  3. 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);
}