glOrtho function opengl
void
glOrtho()
GLAPI void GLAPIENTRY glOrtho( GLdouble left, GLdouble right, GLdouble bottom, GLdouble top, GLdouble near_val, GLdouble far_val )
Implementation
void glOrtho(
double left,
double right,
double bottom,
double top,
double nearVal,
double farVal,
) {
final glOrthoAsFunction = _glOrtho
.cast<
NativeFunction<
Void Function(
Double left,
Double right,
Double bottom,
Double top,
Double nearVal,
Double farVal,
)
>
>()
.asFunction<
void Function(
double left,
double right,
double bottom,
double top,
double nearVal,
double farVal,
)
>();
return glOrthoAsFunction(left, right, bottom, top, nearVal, farVal);
}