glWindowPos2fArb function

void glWindowPos2fArb(
  1. double x,
  2. double y
)
define glWindowPos2fARB GLEW_GET_FUN(__glewWindowPos2fARB)
GLEW_FUN_EXPORT PFNGLWINDOWPOS2FARBPROC __glewWindowPos2fARB
typedef void (GLAPIENTRY * PFNGLWINDOWPOS2FARBPROC) (GLfloat x, GLfloat y)

Implementation

void glWindowPos2fArb(double x, double y) {
  final glWindowPos2fArbAsFunction = _glWindowPos2fArb
      .cast<NativeFunction<Void Function(Float x, Float y)>>()
      .asFunction<void Function(double x, double y)>();
  return glWindowPos2fArbAsFunction(x, y);
}