glWindowPos3fArb function opengl_glext

void glWindowPos3fArb(
  1. double x,
  2. double y,
  3. double z
)
GLAPI void APIENTRY glWindowPos3fARB (GLfloat x, GLfloat y, GLfloat z)

Implementation

void glWindowPos3fArb(double x, double y, double z) {
  final glWindowPos3fArbAsFunction = _glWindowPos3fArb
      .cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
      .asFunction<void Function(double x, double y, double z)>();
  return glWindowPos3fArbAsFunction(x, y, z);
}