glWindowPos2fvArb function opengl_glext

void glWindowPos2fvArb(
  1. Pointer<Float> v
)
GLAPI void APIENTRY glWindowPos2fvARB (const GLfloat *v)

Implementation

void glWindowPos2fvArb(Pointer<Float> v) {
  final glWindowPos2fvArbAsFunction = _glWindowPos2fvArb
      .cast<NativeFunction<Void Function(Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> v)>();
  return glWindowPos2fvArbAsFunction(v);
}