glWindowPos3dv function

void glWindowPos3dv(
  1. Pointer<Double> p
)
define glWindowPos3dv GLEW_GET_FUN(__glewWindowPos3dv)
GLEW_FUN_EXPORT PFNGLWINDOWPOS3DVPROC __glewWindowPos3dv
typedef void (GLAPIENTRY * PFNGLWINDOWPOS3DVPROC) (const GLdouble *p)

Implementation

void glWindowPos3dv(Pointer<Double> p) {
  final glWindowPos3dvAsFunction = _glWindowPos3dv
      .cast<NativeFunction<Void Function(Pointer<Double> p)>>()
      .asFunction<void Function(Pointer<Double> p)>();
  return glWindowPos3dvAsFunction(p);
}