glFeedbackBufferxOes function opengl_glext

void glFeedbackBufferxOes(
  1. int n,
  2. int type,
  3. Pointer<Int32> buffer
)
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);
}