Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: src/codec/SkGifInterlaceIter.h

Issue 1305123002: Scanline decoding for gifs (Closed) Base URL: https://skia.googlesource.com/skia.git@real-bmp-scan
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/codec/SkGifInterlaceIter.h
diff --git a/src/codec/SkGifInterlaceIter.h b/src/codec/SkGifInterlaceIter.h
index 970cd4950f3207e29f1df7f0eec67b6ba7b26274..0d8ff41ee1f48a905cc4bd4153f8d244832ef14f 100644
--- a/src/codec/SkGifInterlaceIter.h
+++ b/src/codec/SkGifInterlaceIter.h
@@ -10,7 +10,7 @@
/*
* Helper class to determine the destination y-values for interlaced gifs
*/
-class SkGifInterlaceIter : SkNoncopyable {
+class SkGifInterlaceIter {
msarett 2015/08/24 23:20:13 I think the scanline decoder needs this to be copy
scroggo 2015/08/27 16:35:50 That is correct.
public:
explicit SkGifInterlaceIter(int32_t height);
@@ -27,7 +27,7 @@ private:
*/
void prepareY();
- const int32_t fHeight;
+ int32_t fHeight;
int32_t fCurrY;
int32_t fDeltaY;
const uint8_t* fStartYPtr;

Powered by Google App Engine
This is Rietveld 408576698