Home | History | Annotate | Download | only in subtly

Lines Matching full:font

23 #include "sfntly/font.h"
36 void CheckLoading(const char* font_path, Font* font) {
37 if (!font || font->num_tables() == 0) {
38 fprintf(stderr, "Could not load font %s. Terminating.\n", font_path);
51 Ptr<Font> font;
52 font.Attach(LoadFont(argv[i]));
53 CheckLoading(argv[i], font);
54 fonts.push_back(font);
61 fprintf(stderr, "Serializing font to %s\n", argv[argc - 1]);
64 fprintf(stdout, "Cannot create merged font.\n");