glFogCoordfv function opengl_glext

void glFogCoordfv(
  1. Pointer<Float> coord
)
GLAPI void APIENTRY glFogCoordfv (const GLfloat *coord)

Implementation

void glFogCoordfv(Pointer<Float> coord) {
  final glFogCoordfvAsFunction = _glFogCoordfv
      .cast<NativeFunction<Void Function(Pointer<Float> coord)>>()
      .asFunction<void Function(Pointer<Float> coord)>();
  return glFogCoordfvAsFunction(coord);
}