glFeedbackBuffer function opengl

void glFeedbackBuffer(
  1. int size,
  2. int type,
  3. Pointer<Float> buffer
)
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);
}