glTransformFeedbackVaryingsNv function opengl_glext
void
glTransformFeedbackVaryingsNv()
GLAPI void APIENTRY glTransformFeedbackVaryingsNV (GLuint program, GLsizei count, const GLint *locations, GLenum bufferMode)
Implementation
void glTransformFeedbackVaryingsNv(
int program,
int count,
Pointer<Int32> locations,
int bufferMode,
) {
final glTransformFeedbackVaryingsNvAsFunction = _glTransformFeedbackVaryingsNv
.cast<
NativeFunction<
Void Function(
Uint32 program,
Uint32 count,
Pointer<Int32> locations,
Uint32 bufferMode,
)
>
>()
.asFunction<
void Function(
int program,
int count,
Pointer<Int32> locations,
int bufferMode,
)
>();
return glTransformFeedbackVaryingsNvAsFunction(
program,
count,
locations,
bufferMode,
);
}