X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Ffont.h;fp=source%2Fbuilders%2Ffont.h;h=af65da8af9ae15d160482397fccdac70d8429d5d;hp=2bb61f750783aa6e179ea7a21c7989dee883ff21;hb=f19366d32cc29287a2730cfba90893e407754081;hpb=f96d553dbf78f9d664d1dbb1fe002fc43f23ad47 diff --git a/source/builders/font.h b/source/builders/font.h index 2bb61f75..af65da8a 100644 --- a/source/builders/font.h +++ b/source/builders/font.h @@ -21,11 +21,11 @@ public: class Loader: public DataFile::CollectionObjectLoader { public: - Loader(Font &); - Loader(Font &, Collection &); - + Loader(Font &f): Loader(f, 0) { } + Loader(Font &f, Collection &c): Loader(f, &c) { } private: - void init(); + Loader(Font &, Collection *); + void glyph(unsigned); void kerning(unsigned, unsigned, float); void ligature(unsigned, unsigned, unsigned);