glRasterPos4fv function opengl

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