glTranslatef function

void glTranslatef(
  1. double x,
  2. double y,
  3. double z
)
GLAPI void GLAPIENTRY glTranslatef (GLfloat x, GLfloat y, GLfloat z)

Implementation

void glTranslatef(double x, double y, double z) {
  final glTranslatefLookupFunction = libGL.lookupFunction<
      Void Function(Float x, Float y, Float z),
      void Function(double x, double y, double z)>('glTranslatef');
  return glTranslatefLookupFunction(x, y, z);
}