aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-02-11 13:29:36 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-11 13:29:36 -0800
commit9b9497ef14f23562a95afe989d1efe41c603a6f6 (patch)
tree73bcf52cd5174899c13c816d02092faccdc8453d /include
parentf8289d9bd1faff400728cb8e1ac0b1aa68bfbc32 (diff)
Implement onSkipScanlines() for bmp and wbmp
Diffstat (limited to 'include')
-rw-r--r--include/codec/SkCodec.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/include/codec/SkCodec.h b/include/codec/SkCodec.h
index edc8ec38fa..c3a5873d7f 100644
--- a/include/codec/SkCodec.h
+++ b/include/codec/SkCodec.h
@@ -657,18 +657,7 @@ private:
return kUnimplemented;
}
- // Naive default version just calls onGetScanlines on temp memory.
- virtual bool onSkipScanlines(int countLines) {
- // FIXME (msarett): Make this a pure virtual and always override this.
- SkAutoMalloc storage(fDstInfo.minRowBytes());
-
- // Note that we pass 0 to rowBytes so we continue to use the same memory.
- // Also note that while getScanlines checks that rowBytes is big enough,
- // onGetScanlines bypasses that check.
- // Calling the virtual method also means we do not double count
- // countLines.
- return countLines == this->onGetScanlines(storage.get(), countLines, 0);
- }
+ virtual bool onSkipScanlines(int /*countLines*/) { return false; }
virtual int onGetScanlines(void* /*dst*/, int /*countLines*/, size_t /*rowBytes*/) { return 0; }