glTangent3fExt function opengl_glext

void glTangent3fExt(
  1. double tx,
  2. double ty,
  3. double tz
)
GLAPI void APIENTRY glTangent3fEXT (GLfloat tx, GLfloat ty, GLfloat tz)

Implementation

void glTangent3fExt(double tx, double ty, double tz) {
  final glTangent3fExtAsFunction = _glTangent3fExt
      .cast<NativeFunction<Void Function(Float tx, Float ty, Float tz)>>()
      .asFunction<void Function(double tx, double ty, double tz)>();
  return glTangent3fExtAsFunction(tx, ty, tz);
}