diff options
author | fredrossperry <fredrossperry@gmail.com> | 2015-09-08 17:15:40 -0700 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2015-09-29 15:41:31 +0100 |
commit | beb08eb1a1fdda72f4ccea0fdb64367d555026fc (patch) | |
tree | cd2578dcdf2e735cc09d5a7eb2752298c58b3226 /source/fitz | |
parent | 7f0493dbc2825f1889994ae6e0cd5db50c6275ca (diff) | |
download | mupdf-beb08eb1a1fdda72f4ccea0fdb64367d555026fc.tar.xz |
add fz_separation_disabled_on_page() and related functions
Diffstat (limited to 'source/fitz')
-rw-r--r-- | source/fitz/document.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source/fitz/document.c b/source/fitz/document.c index 9c78187f..1fc4ff87 100644 --- a/source/fitz/document.c +++ b/source/fitz/document.c @@ -425,6 +425,14 @@ void fz_control_separation_on_page(fz_context *ctx, fz_page *page, int sep, int page->control_separation(ctx, page, sep, disable); } +int fz_separation_disabled_on_page (fz_context *ctx, fz_page *page, int sep) +{ + if (ctx == NULL || page == NULL || page->separation_disabled == NULL) + return 0; + + return page->separation_disabled(ctx, page, sep); +} + const char *fz_get_separation_on_page(fz_context *ctx, fz_page *page, int sep, uint32_t *rgba, uint32_t *cmyk) { if (ctx == NULL || page == NULL || page->get_separation == NULL) |