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