poppler/CairoOutputDev.h | 13 +++++++++++++ 1 file changed, 13 insertions(+)
New commits: commit b7dfca1aa52b825eb3b8f1cc0470398c31615b30 Author: Carlos Garcia Campos <[email protected]> Date: Sun Aug 16 19:28:37 2009 +0200 [cairo] CairoImageOutputDev doesn't implement patterns diff --git a/poppler/CairoOutputDev.h b/poppler/CairoOutputDev.h index 3543ce4..921a8a7 100644 --- a/poppler/CairoOutputDev.h +++ b/poppler/CairoOutputDev.h @@ -347,6 +347,19 @@ public: // Does this device use drawChar() or drawString()? virtual GBool useDrawChar() { return gFalse; } + // Does this device use tilingPatternFill()? If this returns false, + // tiling pattern fills will be reduced to a series of other drawing + // operations. + virtual GBool useTilingPatternFill() { return gFalse; } + + // Does this device use functionShadedFill(), axialShadedFill(), and + // radialShadedFill()? If this returns false, these shaded fills + // will be reduced to a series of other drawing operations. + virtual GBool useShadedFills() { return gFalse; } + + // Does this device use FillColorStop()? + virtual GBool useFillColorStop() { return gFalse; } + // Does this device use beginType3Char/endType3Char? Otherwise, // text in Type 3 fonts will be drawn with drawChar/drawString. virtual GBool interpretType3Chars() { return gFalse; } _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
