summaryrefslogtreecommitdiff
path: root/fitz/fitz_draw.h
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-01-07 01:18:52 +0100
committerTor Andersson <tor@ghostscript.com>2010-01-07 01:18:52 +0100
commitff2530fce783480d985a286bc8da3c3d001ed650 (patch)
tree6822864bc3fd609fa12157060e1f2a76535b3d0e /fitz/fitz_draw.h
parent662c6a3a0fe8bd09e90b877095f52a062eb92f22 (diff)
downloadmupdf-ff2530fce783480d985a286bc8da3c3d001ed650.tar.xz
Render text.
Diffstat (limited to 'fitz/fitz_draw.h')
-rw-r--r--fitz/fitz_draw.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/fitz/fitz_draw.h b/fitz/fitz_draw.h
index e3dc75ee..9fb093b1 100644
--- a/fitz/fitz_draw.h
+++ b/fitz/fitz_draw.h
@@ -15,9 +15,9 @@ typedef struct fz_glyphcache_s fz_glyphcache;
fz_device *fz_newdrawdevice(fz_colorspace *colorspace, fz_pixmap *dest);
fz_glyphcache * fz_newglyphcache(int slots, int size);
-fz_error fz_renderftglyph(fz_glyph *glyph, fz_font *font, int cid, fz_matrix trm);
-fz_error fz_rendert3glyph(fz_glyph *glyph, fz_font *font, int cid, fz_matrix trm);
-fz_error fz_renderglyph(fz_glyphcache*, fz_glyph*, fz_font*, int, fz_matrix);
+void fz_renderftglyph(fz_glyph *glyph, fz_font *font, int cid, fz_matrix trm);
+void fz_rendert3glyph(fz_glyph *glyph, fz_font *font, int cid, fz_matrix trm);
+void fz_renderglyph(fz_glyphcache*, fz_glyph*, fz_font*, int, fz_matrix);
void fz_debugglyphcache(fz_glyphcache *);
void fz_freeglyphcache(fz_glyphcache *);