glRasterPos2fv function opengl

void glRasterPos2fv(
  1. Pointer<Float> v
)
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);
}