diff options
Diffstat (limited to 'fitz/dev_null.c')
-rw-r--r-- | fitz/dev_null.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fitz/dev_null.c b/fitz/dev_null.c index d21daad3..5cd1605a 100644 --- a/fitz/dev_null.c +++ b/fitz/dev_null.c @@ -35,6 +35,20 @@ fz_disable_device_hints(fz_device *dev, int hints) } void +fz_begin_page(fz_device *dev, const fz_rect *rect, const fz_matrix *ctm) +{ + if (dev->begin_page) + dev->begin_page(dev, rect, ctm); +} + +void +fz_end_page(fz_device *dev) +{ + if (dev->end_page) + dev->end_page(dev); +} + +void fz_fill_path(fz_device *dev, fz_path *path, int even_odd, const fz_matrix *ctm, fz_colorspace *colorspace, float *color, float alpha) { |