summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-src/splash/SplashState.h
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2022-04-24 03:42:26 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2022-04-24 03:42:26 +0000
commitd743821ec3b71e00af5dc5541d4e7bf5b003c55e (patch)
tree8145068541ec45af3c223f5a35891d02e4adf273 /Build/source/libs/xpdf/xpdf-src/splash/SplashState.h
parentd0ce904282bf50ad444cf1ff7df7edd12a3b5a70 (diff)
xpdf 4.04
git-svn-id: svn://tug.org/texlive/trunk@63119 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-src/splash/SplashState.h')
-rw-r--r--Build/source/libs/xpdf/xpdf-src/splash/SplashState.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/Build/source/libs/xpdf/xpdf-src/splash/SplashState.h b/Build/source/libs/xpdf/xpdf-src/splash/SplashState.h
index 38cb1188e94..be64b472333 100644
--- a/Build/source/libs/xpdf/xpdf-src/splash/SplashState.h
+++ b/Build/source/libs/xpdf/xpdf-src/splash/SplashState.h
@@ -81,7 +81,7 @@ public:
SplashError clipToPath(SplashPath *path, GBool eo);
// Set the soft mask bitmap.
- void setSoftMask(SplashBitmap *softMaskA);
+ void setSoftMask(SplashBitmap *softMaskA, GBool deleteBitmap = gTrue);
// Set the transfer function.
void setTransfer(Guchar *red, Guchar *green, Guchar *blue, Guchar *gray);
@@ -113,16 +113,17 @@ private:
GBool deleteSoftMask;
GBool inNonIsolatedGroup;
GBool inKnockoutGroup;
- Guchar rgbTransferR[256],
- rgbTransferG[256],
- rgbTransferB[256];
- Guchar grayTransfer[256];
+ Guchar *rgbTransferR;
+ Guchar *rgbTransferG;
+ Guchar *rgbTransferB;
+ Guchar *grayTransfer;
#if SPLASH_CMYK
- Guchar cmykTransferC[256],
- cmykTransferM[256],
- cmykTransferY[256],
- cmykTransferK[256];
+ Guchar *cmykTransferC;
+ Guchar *cmykTransferM;
+ Guchar *cmykTransferY;
+ Guchar *cmykTransferK;
#endif
+ GBool transferIsShared;
Guint overprintMask;
GBool enablePathSimplification;