diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-19 04:07:51 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-19 04:07:51 +0200 |
commit | 3342d0657522d6b3acaae5216b7026165154ab52 (patch) | |
tree | c4b06d02c86944a6d835b3614873a0f6ce113cd6 /tree/font.c | |
parent | bbf53bb5172130d375ac4e6214c685d24120204b (diff) | |
download | mupdf-3342d0657522d6b3acaae5216b7026165154ab52.tar.xz |
moved cidtogid into pdf_font, added colorspaces and pdf_page object
Diffstat (limited to 'tree/font.c')
-rw-r--r-- | tree/font.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tree/font.c b/tree/font.c index 207896c5..a8ac016c 100644 --- a/tree/font.c +++ b/tree/font.c @@ -28,9 +28,6 @@ fz_initfont(fz_font *font, char *name) font->dvmtx.x = 0; font->dvmtx.y = 880; font->dvmtx.w = -1000; - - font->ncidtogid = 0; - font->cidtogid = nil; } void @@ -49,13 +46,6 @@ fz_setfontbbox(fz_font *font, int xmin, int ymin, int xmax, int ymax) } void -fz_setcidtogid(fz_font *font, int n, unsigned short *map) -{ - font->ncidtogid = n; - font->cidtogid = map; -} - -void fz_setdefaulthmtx(fz_font *font, int w) { font->dhmtx.w = w; @@ -251,7 +241,6 @@ fz_freefont(fz_font *font) { if (font->free) font->free(font); - fz_free(font->cidtogid); fz_free(font->hmtx); fz_free(font->vmtx); fz_free(font); |