glMatrixTranslatefExt function opengl_glext

void glMatrixTranslatefExt(
  1. int mode,
  2. double x,
  3. double y,
  4. double z,
)
GLAPI void APIENTRY glMatrixTranslatefEXT (GLenum mode, GLfloat x, GLfloat y, GLfloat z)

Implementation

void glMatrixTranslatefExt(int mode, double x, double y, double z) {
  final glMatrixTranslatefExtAsFunction = _glMatrixTranslatefExt
      .cast<
        NativeFunction<Void Function(Uint32 mode, Float x, Float y, Float z)>
      >()
      .asFunction<void Function(int mode, double x, double y, double z)>();
  return glMatrixTranslatefExtAsFunction(mode, x, y, z);
}