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