glTransformFeedbackVaryings function opengl_glext
void
glTransformFeedbackVaryings()
GLAPI void APIENTRY glTransformFeedbackVaryings (GLuint program, GLsizei count, const GLchar *const*varyings, GLenum bufferMode)
Implementation
void glTransformFeedbackVaryings(
int program,
int count,
Pointer<Pointer<Int8>> varyings,
int bufferMode,
) {
final glTransformFeedbackVaryingsAsFunction = _glTransformFeedbackVaryings
.cast<
NativeFunction<
Void Function(
Uint32 program,
Uint32 count,
Pointer<Pointer<Int8>> varyings,
Uint32 bufferMode,
)
>
>()
.asFunction<
void Function(
int program,
int count,
Pointer<Pointer<Int8>> varyings,
int bufferMode,
)
>();
return glTransformFeedbackVaryingsAsFunction(
program,
count,
varyings,
bufferMode,
);
}