glFogCoorddExt function opengl_glext
GLAPI void APIENTRY glFogCoorddEXT (GLdouble coord)
Implementation
void glFogCoorddExt(double coord) {
final glFogCoorddExtAsFunction = _glFogCoorddExt
.cast<NativeFunction<Void Function(Double coord)>>()
.asFunction<void Function(double coord)>();
return glFogCoorddExtAsFunction(coord);
}