diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-22 08:11:02 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-22 08:11:02 +0100 |
commit | 459f682af16a1982745f2c40a368c1a54059b23e (patch) | |
tree | e3c02a0a7d56d02b41bd2f05b3ca747347d51911 /include/fitz/font.h | |
parent | ce1bf1ef28a160c48c287d302ab7795330806cf0 (diff) | |
download | mupdf-459f682af16a1982745f2c40a368c1a54059b23e.tar.xz |
rewrite of render loop part 2
Diffstat (limited to 'include/fitz/font.h')
-rw-r--r-- | include/fitz/font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/font.h b/include/fitz/font.h index 7e925461..27217c6c 100644 --- a/include/fitz/font.h +++ b/include/fitz/font.h @@ -43,7 +43,7 @@ struct fz_font_s struct fz_glyph_s { int x, y, w, h; - unsigned char *bitmap; + unsigned char *samples; }; void fz_initfont(fz_font *font, char *name); |