glGetnMapfv function opengl_glext

void glGetnMapfv(
  1. int target,
  2. int query,
  3. int bufSize,
  4. Pointer<Float> v,
)
GLAPI void APIENTRY glGetnMapfv (GLenum target, GLenum query, GLsizei bufSize, GLfloat *v)

Implementation

void glGetnMapfv(int target, int query, int bufSize, Pointer<Float> v) {
  final glGetnMapfvAsFunction = _glGetnMapfv
      .cast<
        NativeFunction<
          Void Function(
            Uint32 target,
            Uint32 query,
            Uint32 bufSize,
            Pointer<Float> v,
          )
        >
      >()
      .asFunction<
        void Function(int target, int query, int bufSize, Pointer<Float> v)
      >();
  return glGetnMapfvAsFunction(target, query, bufSize, v);
}