glWindowPos3f function opengl_glext
GLAPI void APIENTRY glWindowPos3f (GLfloat x, GLfloat y, GLfloat z)
Implementation
void glWindowPos3f(double x, double y, double z) {
final glWindowPos3fAsFunction = _glWindowPos3f
.cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
.asFunction<void Function(double x, double y, double z)>();
return glWindowPos3fAsFunction(x, y, z);
}