glWindowPos3dvArb function opengl_glext

void glWindowPos3dvArb(
  1. Pointer<Double> v
)
GLAPI void APIENTRY glWindowPos3dvARB (const GLdouble *v)

Implementation

void glWindowPos3dvArb(Pointer<Double> v) {
  final glWindowPos3dvArbAsFunction = _glWindowPos3dvArb
      .cast<NativeFunction<Void Function(Pointer<Double> v)>>()
      .asFunction<void Function(Pointer<Double> v)>();
  return glWindowPos3dvArbAsFunction(v);
}