loadTGA - multiple declarations

Function loadTGA

Load PNG from file using local FileSystem. Causes GC allocation

SuperImage loadTGA (
  string filename
);

Function loadTGA

Load TGA from stream using default image factory. Causes GC allocation

SuperImage loadTGA (
  InputStream istrm
);

Function loadTGA

Load TGA from stream using specified image factory. GC-free

Compound!(dlib.image.image.SuperImage,string) loadTGA (
  InputStream istrm,
  SuperImageFactory imgFac
);