summaryrefslogtreecommitdiff
path: root/src/glyph.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 00:01:02 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-05-11 00:01:02 +0000
commite90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1 (patch)
tree9bc257098f664dcc3aee4b7828354bab36838acc /src/glyph.h
parentdda72e9bf55f2d47d24a9df63d30ea3bcb92f1e3 (diff)
downloadttf2f-e90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1.tar.gz
ttf2f-e90acbb3dd052ae075bac3e3aa8c9a7ecbf889d1.tar.bz2
Write out font metrics so that the first 256 glyphs match Acorn Latin 1.
Don't use this version -- it will produce inconsistent font data (outlines and encoding export needs the same thing doing to it) svn path=/trunk/tools/ttf2f/; revision=7460
Diffstat (limited to 'src/glyph.h')
-rw-r--r--src/glyph.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glyph.h b/src/glyph.h
index 6a18b2d..8126547 100644
--- a/src/glyph.h
+++ b/src/glyph.h
@@ -33,6 +33,10 @@ struct glyph {
short width; /* advance width of glyph */
struct outline *outline; /* outline of glyph */
struct composite *composite; /* list of composite inclusions */
+
+ int done_intmetrics : 2,
+ done_outlines : 2,
+ done_encoding : 2;
};
#endif