aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar jcgregorio <jcgregorio@google.com>2015-09-05 10:16:28 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-09-05 10:16:28 -0700
commite3330cf2cf361c146af7009301612b4010f82195 (patch)
tree34ea84af1176ed01dfcd6e50974d762ce0a8101e /tests
parentef2df09997f5afa836bbffdab1ff732d0c766a93 (diff)
Revert of Scanline decoding for gifs (patchset #15 id:380001 of https://codereview.chromium.org/1305123002/ )
Reason for revert: Breaks the build with SkScanlineDecoder.h not found: http://build.chromium.org/p/client.skia/builders/Linux%20Builder/builds/3722/steps/compile/logs/stdio ../../third_party/skia/src/utils/SkBitmapRegionCanvas.h:10:10: fatal error: 'SkScanlineDecoder.h' file not found #include "SkScanlineDecoder.h" Original issue's description: > Scanline decoding for gifs > > BUG=skia: > > Committed: https://skia.googlesource.com/skia/+/e9c10b9121887e8c300bd41357461418e061984d TBR=scroggo@google.com,djsollen@google.com,msarett@google.com NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1320273004
Diffstat (limited to 'tests')
-rw-r--r--tests/CodexTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/CodexTest.cpp b/tests/CodexTest.cpp
index 041e71c67f..27c48fb4b8 100644
--- a/tests/CodexTest.cpp
+++ b/tests/CodexTest.cpp
@@ -221,9 +221,9 @@ DEF_TEST(Codec, r) {
check(r, "google_chrome.ico", SkISize::Make(256, 256), false, false);
// GIF
- check(r, "box.gif", SkISize::Make(200, 55), true, false);
- check(r, "color_wheel.gif", SkISize::Make(128, 128), true, false);
- check(r, "randPixels.gif", SkISize::Make(8, 8), true, false);
+ check(r, "box.gif", SkISize::Make(200, 55), false, false);
+ check(r, "color_wheel.gif", SkISize::Make(128, 128), false, false);
+ check(r, "randPixels.gif", SkISize::Make(8, 8), false, false);
// JPG
check(r, "CMYK.jpg", SkISize::Make(642, 516), true, false, false);