Home | History | Annotate | Download | only in subtly

Lines Matching refs:sfntly

25 #include "sfntly/tag.h"
26 #include "sfntly/font.h"
27 #include "sfntly/port/type.h"
28 #include "sfntly/port/refcount.h"
29 #include "sfntly/table/core/cmap_table.h"
30 #include "sfntly/table/truetype/glyph_table.h"
31 #include "sfntly/table/truetype/loca_table.h"
36 class FontAssembler : public sfntly::RefCounted<FontAssembler> {
41 FontAssembler(FontInfo* font_info, sfntly::IntegerSet* table_blacklist);
46 virtual CALLER_ATTACH sfntly::Font* Assemble();
48 sfntly::IntegerSet* table_blacklist() const { return table_blacklist_; }
49 void set_table_blacklist(sfntly::IntegerSet* table_blacklist) {
60 sfntly::Ptr<FontInfo> font_info_;
61 sfntly::Ptr<sfntly::FontFactory> font_factory_;
62 sfntly::Ptr<sfntly::Font::Builder> font_builder_;
63 sfntly::IntegerSet* table_blacklist_;