glOrtho function
GLAPI void GLAPIENTRY glOrtho (GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble zNear, GLdouble zFar)
Implementation
void glOrtho(double left, double right, double bottom, double top, double zNear,
double zFar) {
final glOrthoLookupFunction = libGL.lookupFunction<
Void Function(Double left, Double right, Double bottom, Double top,
Double zNear, Double zFar),
void Function(double left, double right, double bottom, double top,
double zNear, double zFar)>('glOrtho');
return glOrthoLookupFunction(left, right, bottom, top, zNear, zFar);
}