glTranslated function

void glTranslated(
  1. double x,
  2. double y,
  3. double z
)
GLAPI void GLAPIENTRY glTranslated (GLdouble x, GLdouble y, GLdouble z)

Implementation

void glTranslated(double x, double y, double z) {
  final glTranslatedLookupFunction = libGL.lookupFunction<
      Void Function(Double x, Double y, Double z),
      void Function(double x, double y, double z)>('glTranslated');
  return glTranslatedLookupFunction(x, y, z);
}