@@ -314,8 +314,9 @@ class DumpAsTextDev : public OutputDev {
314314 return OutputDev::eoFill (A);
315315 }
316316
317- bool tilingPatternFill (GfxState *A, Gfx *B, Catalog *C, GfxTilingPattern *D, const double * E,
317+ bool tilingPatternFill (GfxState *A, Gfx *B, Catalog *C, GfxTilingPattern *D, const std::array< double , 6 > & E,
318318 int F, int G, int H, int I, double J, double K) {
319+
319320 printf (" tilingPatternFill\n " );
320321 return OutputDev::tilingPatternFill (A, B, C, D, E, F, G, H, I, J, K);
321322 }
@@ -547,7 +548,7 @@ class DumpAsTextDev : public OutputDev {
547548 return OutputDev::checkTransparencyGroup (A, B);
548549 }
549550
550- void beginTransparencyGroup (GfxState *A, double * B, GfxColorSpace *C, bool D,
551+ void beginTransparencyGroup (GfxState *A, const std::array< double , 4 > & B, GfxColorSpace *C, bool D,
551552 bool E, bool F) {
552553 printf (" beginTransparencyGroup\n " );
553554 return OutputDev::beginTransparencyGroup (A, B, C, D, E, F);
@@ -558,12 +559,12 @@ class DumpAsTextDev : public OutputDev {
558559 return OutputDev::endTransparencyGroup (A);
559560 }
560561
561- void paintTransparencyGroup (GfxState *A, double * B) {
562+ void paintTransparencyGroup (GfxState *A, const std::array< double , 4 > & B) {
562563 printf (" paintTransparencyGroup\n " );
563564 return OutputDev::paintTransparencyGroup (A, B);
564565 }
565566
566- void setSoftMask (GfxState *A, double * B, bool C, Function *D, GfxColor *E) {
567+ void setSoftMask (GfxState *A, const std::array< double , 4 > & B, bool C, Function *D, GfxColor *E) {
567568 printf (" setSoftMask\n " );
568569 return OutputDev::setSoftMask (A, B, C, D, E);
569570 }
0 commit comments