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