glWindowPos3fvArb function opengl_glext

void glWindowPos3fvArb(
  1. Pointer<Float> v
)
GLAPI void APIENTRY glWindowPos3fvARB (const GLfloat *v)

Implementation

void glWindowPos3fvArb(Pointer<Float> v) {
  final glWindowPos3fvArbAsFunction = _glWindowPos3fvArb
      .cast<NativeFunction<Void Function(Pointer<Float> v)>>()
      .asFunction<void Function(Pointer<Float> v)>();
  return glWindowPos3fvArbAsFunction(v);
}