Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/OutputDev.cc
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/xpdf/OutputDev.cc')
-rw-r--r--pdf/xpdf/OutputDev.cc14
1 files changed, 11 insertions, 3 deletions
diff --git a/pdf/xpdf/OutputDev.cc b/pdf/xpdf/OutputDev.cc
index 95c5628..eebf460 100644
--- a/pdf/xpdf/OutputDev.cc
+++ b/pdf/xpdf/OutputDev.cc
@@ -57,7 +57,7 @@ void OutputDev::updateAll(GfxState *state) {
updateFont(state);
}
-void OutputDev::drawImageMask(GfxState *state, Stream *str,
+void OutputDev::drawImageMask(GfxState *state, Object *ref, Stream *str,
int width, int height, GBool invert,
GBool inlineImg) {
int i, j;
@@ -70,8 +70,8 @@ void OutputDev::drawImageMask(GfxState *state, Stream *str,
}
}
-void OutputDev::drawImage(GfxState *state, Stream *str, int width,
- int height, GfxImageColorMap *colorMap,
+void OutputDev::drawImage(GfxState *state, Object *ref, Stream *str,
+ int width, int height, GfxImageColorMap *colorMap,
GBool inlineImg) {
int i, j;
@@ -83,3 +83,11 @@ void OutputDev::drawImage(GfxState *state, Stream *str, int width,
str->getChar();
}
}
+
+#if OPI_SUPPORT
+void OutputDev::opiBegin(GfxState *state, Dict *opiDict) {
+}
+
+void OutputDev::opiEnd(GfxState *state, Dict *opiDict) {
+}
+#endif