glPixelZoom function
GLAPI void GLAPIENTRY glPixelZoom (GLfloat xfactor, GLfloat yfactor)
Implementation
void glPixelZoom(double xfactor, double yfactor) {
final glPixelZoomLookupFunction = libGL.lookupFunction<
Void Function(Float xfactor, Float yfactor),
void Function(double xfactor, double yfactor)>('glPixelZoom');
return glPixelZoomLookupFunction(xfactor, yfactor);
}