glTranslatef function
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);
}