glTransformFeedbackStreamAttribsNv function opengl_glext
void
glTransformFeedbackStreamAttribsNv()
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,
);
}