| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "Resources.h" | 8 #include "Resources.h" |
| 9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
| 10 #include "SkCodec.h" | 10 #include "SkCodec.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 | 75 |
| 76 // BMP | 76 // BMP |
| 77 // TODO (msarett): SkBmpCodec should be able to rewind. | 77 // TODO (msarett): SkBmpCodec should be able to rewind. |
| 78 check(r, "randPixels.bmp", SkISize::Make(8, 8), false); | 78 check(r, "randPixels.bmp", SkISize::Make(8, 8), false); |
| 79 | 79 |
| 80 // ICO | 80 // ICO |
| 81 // TODO (msarett): SkIcoCodec should be able to rewind. | 81 // TODO (msarett): SkIcoCodec should be able to rewind. |
| 82 check(r, "color_wheel.ico", SkISize::Make(128, 128), false); | 82 check(r, "color_wheel.ico", SkISize::Make(128, 128), false); |
| 83 | 83 |
| 84 // PNG | 84 // PNG |
| 85 // TODO (scroggo): SkPngCodec should be able to rewind. | 85 check(r, "arrow.png", SkISize::Make(187, 312), true); |
| 86 check(r, "arrow.png", SkISize::Make(187, 312), false); | 86 check(r, "baby_tux.png", SkISize::Make(240, 246), true); |
| 87 check(r, "baby_tux.png", SkISize::Make(240, 246), false); | 87 check(r, "color_wheel.png", SkISize::Make(128, 128), true); |
| 88 check(r, "color_wheel.png", SkISize::Make(128, 128), false); | 88 check(r, "half-transparent-white-pixel.png", SkISize::Make(1, 1), true); |
| 89 check(r, "half-transparent-white-pixel.png", SkISize::Make(1, 1), false); | 89 check(r, "mandrill_128.png", SkISize::Make(128, 128), true); |
| 90 check(r, "mandrill_128.png", SkISize::Make(128, 128), false); | 90 check(r, "mandrill_16.png", SkISize::Make(16, 16), true); |
| 91 check(r, "mandrill_16.png", SkISize::Make(16, 16), false); | 91 check(r, "mandrill_256.png", SkISize::Make(256, 256), true); |
| 92 check(r, "mandrill_256.png", SkISize::Make(256, 256), false); | 92 check(r, "mandrill_32.png", SkISize::Make(32, 32), true); |
| 93 check(r, "mandrill_32.png", SkISize::Make(32, 32), false); | 93 check(r, "mandrill_512.png", SkISize::Make(512, 512), true); |
| 94 check(r, "mandrill_512.png", SkISize::Make(512, 512), false); | 94 check(r, "mandrill_64.png", SkISize::Make(64, 64), true); |
| 95 check(r, "mandrill_64.png", SkISize::Make(64, 64), false); | 95 check(r, "plane.png", SkISize::Make(250, 126), true); |
| 96 check(r, "plane.png", SkISize::Make(250, 126), false); | 96 check(r, "randPixels.png", SkISize::Make(8, 8), true); |
| 97 check(r, "randPixels.png", SkISize::Make(8, 8), false); | 97 check(r, "yellow_rose.png", SkISize::Make(400, 301), true); |
| 98 check(r, "yellow_rose.png", SkISize::Make(400, 301), false); | |
| 99 } | 98 } |
| OLD | NEW |