glWindowPos3fMesa function opengl_glext

void glWindowPos3fMesa(
  1. double x,
  2. double y,
  3. double z
)
GLAPI void APIENTRY glWindowPos3fMESA (GLfloat x, GLfloat y, GLfloat z)

Implementation

void glWindowPos3fMesa(double x, double y, double z) {
  final glWindowPos3fMesaAsFunction = _glWindowPos3fMesa
      .cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
      .asFunction<void Function(double x, double y, double z)>();
  return glWindowPos3fMesaAsFunction(x, y, z);
}