glFeedbackBuffer function

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 glFeedbackBufferLookupFunction = libGL.lookupFunction<
      Void Function(Uint32 size, Uint32 type, Pointer<Float> buffer),
      void Function(
          int size, int type, Pointer<Float> buffer)>('glFeedbackBuffer');
  return glFeedbackBufferLookupFunction(size, type, buffer);
}