X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuilders%2Ffont.h;h=af65da8af9ae15d160482397fccdac70d8429d5d;hb=f19366d32cc29287a2730cfba90893e407754081;hp=2bb61f750783aa6e179ea7a21c7989dee883ff21;hpb=5bb193f930fb8738d099d630c4d625d82c1215b5;p=libs%2Fgl.git 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);