poppler/CairoOutputDev.cc | 4 ++++ poppler/CairoOutputDev.h | 1 + 2 files changed, 5 insertions(+)
New commits: commit aa9c3acbc73bafb33c8a797701ed0488a4a74263 Author: Carlos Garcia Campos <[email protected]> Date: Thu Jan 28 17:23:18 2010 +0100 [cairo] Add clipToStrokePath() method It's unimplemented, it just contains a log message to help when debugging. diff --git a/poppler/CairoOutputDev.cc b/poppler/CairoOutputDev.cc index d6b32f3..a077754 100644 --- a/poppler/CairoOutputDev.cc +++ b/poppler/CairoOutputDev.cc @@ -840,6 +840,10 @@ void CairoOutputDev::eoClip(GfxState *state) { } +void CairoOutputDev::clipToStrokePath(GfxState *state) { + LOG(printf("clip-to-stroke-path\n")); +} + void CairoOutputDev::beginString(GfxState *state, GooString *s) { int len = s->getLength(); diff --git a/poppler/CairoOutputDev.h b/poppler/CairoOutputDev.h index 7adb8d7..30043b5 100644 --- a/poppler/CairoOutputDev.h +++ b/poppler/CairoOutputDev.h @@ -156,6 +156,7 @@ public: virtual void stroke(GfxState *state); virtual void fill(GfxState *state); virtual void eoFill(GfxState *state); + virtual void clipToStrokePath(GfxState *state); virtual GBool tilingPatternFill(GfxState *state, Object *str, int paintType, Dict *resDict, double *mat, double *bbox, _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
