glFogCoordfExt function opengl_glext
GLAPI void APIENTRY glFogCoordfEXT (GLfloat coord)
Implementation
void glFogCoordfExt(double coord) {
final glFogCoordfExtAsFunction = _glFogCoordfExt
.cast<NativeFunction<Void Function(Float coord)>>()
.asFunction<void Function(double coord)>();
return glFogCoordfExtAsFunction(coord);
}