glFeedbackBuffer function opengl
GLAPI void GLAPIENTRY glFeedbackBuffer( GLsizei size, GLenum type, GLfloat *buffer )
Implementation
void glFeedbackBuffer(int size, int type, Pointer<Float> buffer) {
final glFeedbackBufferAsFunction = _glFeedbackBuffer
.cast<
NativeFunction<
Void Function(Uint32 size, Uint32 type, Pointer<Float> buffer)
>
>()
.asFunction<void Function(int size, int type, Pointer<Float> buffer)>();
return glFeedbackBufferAsFunction(size, type, buffer);
}