glFeedbackBufferxOes function opengl_glext
GLAPI void APIENTRY glFeedbackBufferxOES (GLsizei n, GLenum type, const GLfixed *buffer)
Implementation
void glFeedbackBufferxOes(int n, int type, Pointer<Int32> buffer) {
final glFeedbackBufferxOesAsFunction = _glFeedbackBufferxOes
.cast<
NativeFunction<
Void Function(Uint32 n, Uint32 type, Pointer<Int32> buffer)
>
>()
.asFunction<void Function(int n, int type, Pointer<Int32> buffer)>();
return glFeedbackBufferxOesAsFunction(n, type, buffer);
}