From 4a20a0db912c85dc78362c4fa31bf8915b7b56f5 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Fri, 10 Nov 2023 11:40:05 +0000 Subject: [PATCH 1/2] Update to Poppler 21.03.0 --- vendor/anongit.freedesktop.org/git/poppler/poppler.git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/anongit.freedesktop.org/git/poppler/poppler.git b/vendor/anongit.freedesktop.org/git/poppler/poppler.git index b876a31..a9662d3 160000 --- a/vendor/anongit.freedesktop.org/git/poppler/poppler.git +++ b/vendor/anongit.freedesktop.org/git/poppler/poppler.git @@ -1 +1 @@ -Subproject commit b876a31407279329c75bc7ddf541c8c5af07152b +Subproject commit a9662d36c2faa6f8590ccd7c99758de6dcf4e324 From e0b19b3fd9bab2bc77923d31176227a7bd099e22 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Fri, 10 Nov 2023 11:47:10 +0000 Subject: [PATCH 2/2] Update arguments to `tilingPatternFill` See https://gitlab.freedesktop.org/poppler/poppler/-/commit/2589f3252fe304bd52be2a9322915c5397be4b09 --- src/DumpAsTextDev.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/DumpAsTextDev.h b/src/DumpAsTextDev.h index 2f41011..f601c66 100644 --- a/src/DumpAsTextDev.h +++ b/src/DumpAsTextDev.h @@ -314,12 +314,10 @@ class DumpAsTextDev : public OutputDev { return OutputDev::eoFill(A); } - bool tilingPatternFill(GfxState *A, Gfx *B, Catalog *C, Object *D, double *E, - int F, int G, Dict *H, double *I, double *J, int K, - int L, int M, int N, double O, double P) { + bool tilingPatternFill(GfxState *A, Gfx *B, Catalog *C, GfxTilingPattern *D, const double *E, + int F, int G, int H, int I, double J, double K) { printf("tilingPatternFill\n"); - return OutputDev::tilingPatternFill(A, B, C, D, E, F, G, H, I, J, K, L, M, - N, O, P); + return OutputDev::tilingPatternFill(A, B, C, D, E, F, G, H, I, J, K); } bool functionShadedFill(GfxState *A, GfxFunctionShading *B) {