Acknowledge that SkIcoCodec can rewind and test it.

Since SkIcoCodec has an SkCodec for its encoded images, backed by
SkMemoryStreams, the SkMemoryStream can always rewind, and will be
rewound by the sub-codec if necessary (now that SkBmpCodec and
SkPngCodec support rewinding).

Depends on https://codereview.chromium.org/1057483003/ and
https://codereview.chromium.org/1048423003/ (DIFFERENT ISSUES).

BUG=skia:3257

Review URL: https://codereview.chromium.org/1054603002
This commit is contained in:
scroggo 2015-04-01 10:24:37 -07:00 committed by Commit bot
parent 3eada2a49f
commit 65a8e12287

View File

@ -77,8 +77,7 @@ DEF_TEST(Codec, r) {
check(r, "randPixels.bmp", SkISize::Make(8, 8), true);
// ICO
// TODO (msarett): SkIcoCodec should be able to rewind.
check(r, "color_wheel.ico", SkISize::Make(128, 128), false);
check(r, "color_wheel.ico", SkISize::Make(128, 128), true);
// PNG
check(r, "arrow.png", SkISize::Make(187, 312), true);