glTranslatef function opengl
GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z )
Implementation
void glTranslatef(double x, double y, double z) {
final glTranslatefAsFunction = _glTranslatef
.cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
.asFunction<void Function(double x, double y, double z)>();
return glTranslatefAsFunction(x, y, z);
}