glWindowPos3fMesa function opengl_glext
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);
}