summaryrefslogtreecommitdiff
path: root/tree/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'tree/font.c')
-rw-r--r--tree/font.c11
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);