glTransformFeedbackStreamAttribsNv function opengl_glext

void glTransformFeedbackStreamAttribsNv(
  1. int count,
  2. Pointer<Int32> attribs,
  3. int nbuffers,
  4. Pointer<Int32> bufstreams,
  5. int bufferMode,
)
GLAPI void APIENTRY glTransformFeedbackStreamAttribsNV (GLsizei count, const GLint *attribs, GLsizei nbuffers, const GLint *bufstreams, GLenum bufferMode)

Implementation

void glTransformFeedbackStreamAttribsNv(
  int count,
  Pointer<Int32> attribs,
  int nbuffers,
  Pointer<Int32> bufstreams,
  int bufferMode,
) {
  final glTransformFeedbackStreamAttribsNvAsFunction =
      _glTransformFeedbackStreamAttribsNv
          .cast<
            NativeFunction<
              Void Function(
                Uint32 count,
                Pointer<Int32> attribs,
                Uint32 nbuffers,
                Pointer<Int32> bufstreams,
                Uint32 bufferMode,
              )
            >
          >()
          .asFunction<
            void Function(
              int count,
              Pointer<Int32> attribs,
              int nbuffers,
              Pointer<Int32> bufstreams,
              int bufferMode,
            )
          >();
  return glTransformFeedbackStreamAttribsNvAsFunction(
    count,
    attribs,
    nbuffers,
    bufstreams,
    bufferMode,
  );
}