00001 #ifndef _POLYGONFONT_H_ 00002 #define _POLYGONFONT_H_ 00003 00004 namespace glttf { 00005 00007 00010 class PolygonGlyph : public Glyph 00011 { 00012 public: 00014 typedef int Parameter; 00016 static const Parameter DEFAULT_PARAMETER = 5; 00017 00019 00023 PolygonGlyph(const FT_GlyphSlot glyph, Parameter subdiv); 00024 00026 00029 static void setupState() {} 00030 00032 00035 static void cleanupState() {} 00036 }; 00037 00039 typedef BasicFont<PolygonGlyph> PolygonFont; 00040 00041 } 00042 00043 #endif 00044