glRasterPos2fv function opengl
GLAPI void GLAPIENTRY glRasterPos2fv( const GLfloat *v )
Implementation
void glRasterPos2fv(Pointer<Float> v) {
final glRasterPos2fvAsFunction = _glRasterPos2fv
.cast<NativeFunction<Void Function(Pointer<Float> v)>>()
.asFunction<void Function(Pointer<Float> v)>();
return glRasterPos2fvAsFunction(v);
}