Chromium Code Reviews| Index: src/codec/SkCodec_libgif.cpp |
| diff --git a/src/codec/SkCodec_libgif.cpp b/src/codec/SkCodec_libgif.cpp |
| index 8021af95a2e050f1b2df82985d9f467203e108b2..e6a40164f3549e591a569ba364a7eb78275c95d7 100644 |
| --- a/src/codec/SkCodec_libgif.cpp |
| +++ b/src/codec/SkCodec_libgif.cpp |
| @@ -508,7 +508,7 @@ SkCodec::Result SkGifCodec::onStartScanlineDecode(const SkImageInfo& dstInfo, |
| void SkGifCodec::handleScanlineFrame(int count, int* rowsBeforeFrame, int* rowsInFrame) { |
| if (fFrameIsSubset) { |
| - const int currRow = this->INHERITED::nextScanline(); |
|
msarett
2015/12/01 23:23:04
Technically this works...
What I intended was for
scroggo
2015/12/02 15:24:41
The old code is also weird because SkCodec::nextSc
msarett
2015/12/02 15:45:05
Yes that is correct.
|
| + const int currRow = this->currScanline(); |
| // The number of rows that remain to be skipped before reaching rows that we |
| // actually must decode into. |