summaryrefslogtreecommitdiff
path: root/platform/gl/gl-main.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-07-06 14:20:26 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-08-10 12:09:10 +0200
commit0abcccc4aab4d893ac2a0ef116ff1f0c006fbc30 (patch)
tree8fe312208afaf28e2d759f4a1c53ec4ef131124f /platform/gl/gl-main.c
parent6f8cb5606e426084160eaec82e9c11966e7fb5f4 (diff)
downloadmupdf-0abcccc4aab4d893ac2a0ef116ff1f0c006fbc30.tar.xz
Rejig pdf_update_page and pdf_update_annot.
The intent is for a user to iterate over the annotations on a page calling pdf_update_annot for each one. If this function returns true, then the annotation has changed since the last time it was called, and the user needs to re-render. pdf_update_page is a simple loop over the annotations on a page, for use if you only care about page level granularity. Users should no longer look at or change the pdf_annot.has_new_ap field.
Diffstat (limited to 'platform/gl/gl-main.c')
-rw-r--r--platform/gl/gl-main.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/platform/gl/gl-main.c b/platform/gl/gl-main.c
index ed1591e4..5b5ae2b8 100644
--- a/platform/gl/gl-main.c
+++ b/platform/gl/gl-main.c
@@ -260,13 +260,6 @@ void render_page(void)
fz_gamma_pixmap(ctx, pix, 1 / 1.4f);
}
- if (pdf)
- {
- pdf_annot *annot;
- for (annot = page->annots; annot; annot = annot->next)
- annot->has_new_ap = 0;
- }
-
ui_texture_from_pixmap(&page_tex, pix);
fz_drop_pixmap(ctx, pix);
}