glGetnMapfv function opengl_glext
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);
}