glRasterPos3fv function opengl

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