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

Unified Diff: tests/CodexTest.cpp

Issue 1092303003: Scanline decoding for jpeg (Closed) Base URL: https://skia.googlesource.com/skia.git@index-scanline
Patch Set: Return a reference to ImageInfo Created 5 years, 8 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
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/CodexTest.cpp
diff --git a/tests/CodexTest.cpp b/tests/CodexTest.cpp
index b33e0bebea150ce15bec60f498c565a6e7990c3b..080e6e5974af81c903e756c4e1d3a6180be4c612 100644
--- a/tests/CodexTest.cpp
+++ b/tests/CodexTest.cpp
@@ -105,11 +105,11 @@ DEF_TEST(Codec, r) {
check(r, "randPixels.gif", SkISize::Make(8, 8), false);
// JPG
- check(r, "CMYK.jpg", SkISize::Make(642, 516), false);
- check(r, "color_wheel.jpg", SkISize::Make(128, 128), false);
- check(r, "grayscale.jpg", SkISize::Make(128, 128), false);
- check(r, "mandrill_512_q075.jpg", SkISize::Make(512, 512), false);
- check(r, "randPixels.jpg", SkISize::Make(8, 8), false);
+ check(r, "CMYK.jpg", SkISize::Make(642, 516), true);
+ check(r, "color_wheel.jpg", SkISize::Make(128, 128), true);
+ check(r, "grayscale.jpg", SkISize::Make(128, 128), true);
+ check(r, "mandrill_512_q075.jpg", SkISize::Make(512, 512), true);
+ check(r, "randPixels.jpg", SkISize::Make(8, 8), true);
// PNG
check(r, "arrow.png", SkISize::Make(187, 312), true);
« no previous file with comments | « src/codec/SkJpegCodec.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698