glFogCoordhvNv function opengl_glext

void glFogCoordhvNv(
  1. Pointer<Uint16> fog
)
GLAPI void APIENTRY glFogCoordhvNV (const GLhalfNV *fog)

Implementation

void glFogCoordhvNv(Pointer<Uint16> fog) {
  final glFogCoordhvNvAsFunction = _glFogCoordhvNv
      .cast<NativeFunction<Void Function(Pointer<Uint16> fog)>>()
      .asFunction<void Function(Pointer<Uint16> fog)>();
  return glFogCoordhvNvAsFunction(fog);
}