blob: b58880b10dcb1af70dc299301ad68f924d522a33 [file] [log] [blame]
commit-bot@chromium.org75854792013-10-29 19:55:00 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkBitmap.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +00009#include "SkCachingPixelRef.h"
commit-bot@chromium.org75854792013-10-29 19:55:00 +000010#include "SkCanvas.h"
11#include "SkData.h"
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +000012#include "SkDiscardableMemoryPool.h"
commit-bot@chromium.org75854792013-10-29 19:55:00 +000013#include "SkImageDecoder.h"
commit-bot@chromium.org2d970b52014-05-27 14:14:22 +000014#include "SkImageGeneratorPriv.h"
reed011f39a2014-08-28 13:35:23 -070015#include "SkResourceCache.h"
commit-bot@chromium.org75854792013-10-29 19:55:00 +000016#include "SkStream.h"
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +000017#include "SkUtils.h"
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +000018
commit-bot@chromium.org75854792013-10-29 19:55:00 +000019#include "Test.h"
20
commit-bot@chromium.org75854792013-10-29 19:55:00 +000021/**
22 * Fill this bitmap with some color.
23 */
24static void make_test_image(SkBitmap* bm) {
reed6c225732014-06-09 19:52:07 -070025 const int W = 50, H = 50;
26 bm->allocN32Pixels(W, H);
commit-bot@chromium.org75854792013-10-29 19:55:00 +000027 bm->eraseColor(SK_ColorBLACK);
28 SkCanvas canvas(*bm);
29 SkPaint paint;
30 paint.setColor(SK_ColorBLUE);
31 canvas.drawRectCoords(0, 0, SkIntToScalar(W/2),
32 SkIntToScalar(H/2), paint);
33 paint.setColor(SK_ColorWHITE);
34 canvas.drawRectCoords(SkIntToScalar(W/2), SkIntToScalar(H/2),
35 SkIntToScalar(W), SkIntToScalar(H), paint);
36}
37
38/**
39 * encode this bitmap into some data via SkImageEncoder
40 */
41static SkData* create_data_from_bitmap(const SkBitmap& bm,
42 SkImageEncoder::Type type) {
43 SkDynamicMemoryWStream stream;
44 if (SkImageEncoder::EncodeStream(&stream, bm, type, 100)) {
45 return stream.copyToData();
46 }
halcanary96fcdcc2015-08-27 07:41:13 -070047 return nullptr;
commit-bot@chromium.org75854792013-10-29 19:55:00 +000048}
49
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +000050////////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.org75854792013-10-29 19:55:00 +000051
52static void compare_bitmaps(skiatest::Reporter* reporter,
53 const SkBitmap& b1, const SkBitmap& b2,
54 bool pixelPerfect = true) {
55 REPORTER_ASSERT(reporter, b1.empty() == b2.empty());
56 REPORTER_ASSERT(reporter, b1.width() == b2.width());
57 REPORTER_ASSERT(reporter, b1.height() == b2.height());
58 REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
59 SkAutoLockPixels autoLockPixels1(b1);
60 SkAutoLockPixels autoLockPixels2(b2);
61 REPORTER_ASSERT(reporter, b1.isNull() == b2.isNull());
62 if (b1.isNull() || b1.empty()) {
63 return;
64 }
bsalomon49f085d2014-09-05 13:34:00 -070065 REPORTER_ASSERT(reporter, b1.getPixels());
66 REPORTER_ASSERT(reporter, b2.getPixels());
commit-bot@chromium.org75854792013-10-29 19:55:00 +000067 if ((!(b1.getPixels())) || (!(b2.getPixels()))) {
68 return;
69 }
70 if ((b1.width() != b2.width()) ||
71 (b1.height() != b2.height())) {
72 return;
73 }
74 if (!pixelPerfect) {
75 return;
76 }
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +000077
commit-bot@chromium.org75854792013-10-29 19:55:00 +000078 int pixelErrors = 0;
79 for (int y = 0; y < b2.height(); ++y) {
80 for (int x = 0; x < b2.width(); ++x) {
81 if (b1.getColor(x, y) != b2.getColor(x, y)) {
82 ++pixelErrors;
83 }
84 }
85 }
86 REPORTER_ASSERT(reporter, 0 == pixelErrors);
87}
88
halcanary@google.com36d08c52013-12-05 14:00:03 +000089typedef bool (*InstallEncoded)(SkData* encoded, SkBitmap* dst);
90
commit-bot@chromium.org75854792013-10-29 19:55:00 +000091/**
halcanary@google.com36d08c52013-12-05 14:00:03 +000092 This function tests three differently encoded images against the
93 original bitmap */
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +000094static void test_three_encodings(skiatest::Reporter* reporter,
halcanary@google.com36d08c52013-12-05 14:00:03 +000095 InstallEncoded install) {
commit-bot@chromium.org75854792013-10-29 19:55:00 +000096 SkBitmap original;
97 make_test_image(&original);
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +000098 REPORTER_ASSERT(reporter, !original.empty());
99 REPORTER_ASSERT(reporter, !original.isNull());
100 if (original.empty() || original.isNull()) {
101 return;
102 }
commit-bot@chromium.org75854792013-10-29 19:55:00 +0000103 static const SkImageEncoder::Type types[] = {
104 SkImageEncoder::kPNG_Type,
105 SkImageEncoder::kJPEG_Type,
106 SkImageEncoder::kWEBP_Type
107 };
commit-bot@chromium.org75854792013-10-29 19:55:00 +0000108 for (size_t i = 0; i < SK_ARRAY_COUNT(types); i++) {
109 SkImageEncoder::Type type = types[i];
110 SkAutoDataUnref encoded(create_data_from_bitmap(original, type));
halcanary96fcdcc2015-08-27 07:41:13 -0700111 REPORTER_ASSERT(reporter, encoded.get() != nullptr);
112 if (nullptr == encoded.get()) {
halcanary@google.com36d08c52013-12-05 14:00:03 +0000113 continue;
commit-bot@chromium.org75854792013-10-29 19:55:00 +0000114 }
halcanary@google.com36d08c52013-12-05 14:00:03 +0000115 SkBitmap lazy;
116 bool installSuccess = install(encoded.get(), &lazy);
117 REPORTER_ASSERT(reporter, installSuccess);
118 if (!installSuccess) {
119 continue;
120 }
halcanary96fcdcc2015-08-27 07:41:13 -0700121 REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
halcanary@google.com36d08c52013-12-05 14:00:03 +0000122 {
123 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
bsalomon49f085d2014-09-05 13:34:00 -0700124 REPORTER_ASSERT(reporter, lazy.getPixels());
halcanary96fcdcc2015-08-27 07:41:13 -0700125 if (nullptr == lazy.getPixels()) {
halcanary@google.com36d08c52013-12-05 14:00:03 +0000126 continue;
127 }
128 }
129 // pixels should be gone!
halcanary96fcdcc2015-08-27 07:41:13 -0700130 REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
halcanary@google.com36d08c52013-12-05 14:00:03 +0000131 {
132 SkAutoLockPixels autoLockPixels(lazy); // now pixels are good.
bsalomon49f085d2014-09-05 13:34:00 -0700133 REPORTER_ASSERT(reporter, lazy.getPixels());
halcanary96fcdcc2015-08-27 07:41:13 -0700134 if (nullptr == lazy.getPixels()) {
halcanary@google.com36d08c52013-12-05 14:00:03 +0000135 continue;
136 }
137 }
138 bool comparePixels = (SkImageEncoder::kPNG_Type == type);
139 compare_bitmaps(reporter, original, lazy, comparePixels);
commit-bot@chromium.org75854792013-10-29 19:55:00 +0000140 }
141}
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +0000142
halcanary@google.com36d08c52013-12-05 14:00:03 +0000143////////////////////////////////////////////////////////////////////////////////
halcanary@google.comdcfebfa2013-12-05 14:18:07 +0000144static bool install_skCachingPixelRef(SkData* encoded, SkBitmap* dst) {
reed1c846342015-07-09 11:47:36 -0700145 return SkCachingPixelRef::Install(SkImageGenerator::NewFromEncoded(encoded), dst);
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +0000146}
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000147static bool install_skDiscardablePixelRef(SkData* encoded, SkBitmap* dst) {
148 // Use system-default discardable memory.
reed5965c8a2015-01-07 18:04:45 -0800149 return SkInstallDiscardablePixelRef(encoded, dst);
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +0000150}
halcanary@google.comad04eb42013-11-21 15:32:08 +0000151
halcanary@google.com36d08c52013-12-05 14:00:03 +0000152////////////////////////////////////////////////////////////////////////////////
153/**
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000154 * This checks to see that a SkCachingPixelRef and a
155 * SkDiscardablePixelRef works as advertised with a
156 * SkDecodingImageGenerator.
halcanary@google.com36d08c52013-12-05 14:00:03 +0000157 */
halcanary@google.comad04eb42013-11-21 15:32:08 +0000158DEF_TEST(DecodingImageGenerator, reporter) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000159 test_three_encodings(reporter, install_skCachingPixelRef);
160 test_three_encodings(reporter, install_skDiscardablePixelRef);
halcanary@google.comad04eb42013-11-21 15:32:08 +0000161}
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000162
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000163class TestImageGenerator : public SkImageGenerator {
164public:
165 enum TestType {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000166 kFailGetPixels_TestType,
167 kSucceedGetPixels_TestType,
168 kLast_TestType = kSucceedGetPixels_TestType
169 };
170 static int Width() { return 10; }
171 static int Height() { return 10; }
halcanaryea4673f2014-08-18 08:27:09 -0700172 static uint32_t Color() { return 0xff123456; }
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000173 TestImageGenerator(TestType type, skiatest::Reporter* reporter)
reed3ef71e32015-03-19 08:31:14 -0700174 : INHERITED(GetMyInfo()), fType(type), fReporter(reporter) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000175 SkASSERT((fType <= kLast_TestType) && (fType >= 0));
176 }
tfarina@chromium.org58674812014-01-21 23:39:22 +0000177 virtual ~TestImageGenerator() { }
commit-bot@chromium.org00f8d6c2014-05-29 15:57:20 +0000178
179protected:
reed3ef71e32015-03-19 08:31:14 -0700180 static SkImageInfo GetMyInfo() {
181 return SkImageInfo::MakeN32(TestImageGenerator::Width(), TestImageGenerator::Height(),
182 kOpaque_SkAlphaType);
183 }
184
scroggo5315fd42015-07-09 09:08:00 -0700185 bool onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes,
186 SkPMColor ctable[], int* ctableCount) override {
halcanary96fcdcc2015-08-27 07:41:13 -0700187 REPORTER_ASSERT(fReporter, pixels != nullptr);
scroggo08649082015-02-13 11:13:34 -0800188 REPORTER_ASSERT(fReporter, rowBytes >= info.minRowBytes());
189 if (fType != kSucceedGetPixels_TestType) {
scroggo5315fd42015-07-09 09:08:00 -0700190 return false;
scroggo08649082015-02-13 11:13:34 -0800191 }
192 if (info.colorType() != kN32_SkColorType) {
scroggo5315fd42015-07-09 09:08:00 -0700193 return false;
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000194 }
195 char* bytePtr = static_cast<char*>(pixels);
reede5ea5002014-09-03 11:54:58 -0700196 for (int y = 0; y < info.height(); ++y) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000197 sk_memset32(reinterpret_cast<SkColor*>(bytePtr),
reede5ea5002014-09-03 11:54:58 -0700198 TestImageGenerator::Color(), info.width());
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000199 bytePtr += rowBytes;
200 }
scroggo5315fd42015-07-09 09:08:00 -0700201 return true;
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000202 }
halcanary@google.com3d50ea12014-01-02 13:15:13 +0000203
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000204private:
205 const TestType fType;
206 skiatest::Reporter* const fReporter;
reed3ef71e32015-03-19 08:31:14 -0700207
208 typedef SkImageGenerator INHERITED;
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000209};
halcanary@google.com3d50ea12014-01-02 13:15:13 +0000210
tfarina@chromium.org58674812014-01-21 23:39:22 +0000211static void check_test_image_generator_bitmap(skiatest::Reporter* reporter,
212 const SkBitmap& bm) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000213 REPORTER_ASSERT(reporter, TestImageGenerator::Width() == bm.width());
214 REPORTER_ASSERT(reporter, TestImageGenerator::Height() == bm.height());
215 SkAutoLockPixels autoLockPixels(bm);
bsalomon49f085d2014-09-05 13:34:00 -0700216 REPORTER_ASSERT(reporter, bm.getPixels());
halcanary96fcdcc2015-08-27 07:41:13 -0700217 if (nullptr == bm.getPixels()) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000218 return;
219 }
220 int errors = 0;
221 for (int y = 0; y < bm.height(); ++y) {
222 for (int x = 0; x < bm.width(); ++x) {
223 if (TestImageGenerator::Color() != *bm.getAddr32(x, y)) {
224 ++errors;
225 }
226 }
227 }
228 REPORTER_ASSERT(reporter, 0 == errors);
229}
230
231enum PixelRefType {
232 kSkCaching_PixelRefType,
233 kSkDiscardable_PixelRefType,
234 kLast_PixelRefType = kSkDiscardable_PixelRefType
235};
tfarina@chromium.org58674812014-01-21 23:39:22 +0000236
237static void check_pixelref(TestImageGenerator::TestType type,
238 skiatest::Reporter* reporter,
239 PixelRefType pixelRefType,
240 SkDiscardableMemory::Factory* factory) {
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000241 SkASSERT((pixelRefType >= 0) && (pixelRefType <= kLast_PixelRefType));
halcanary385fe4d2015-08-26 13:07:48 -0700242 SkAutoTDelete<SkImageGenerator> gen(new TestImageGenerator(type, reporter));
halcanary96fcdcc2015-08-27 07:41:13 -0700243 REPORTER_ASSERT(reporter, gen.get() != nullptr);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000244 SkBitmap lazy;
245 bool success;
246 if (kSkCaching_PixelRefType == pixelRefType) {
reed011f39a2014-08-28 13:35:23 -0700247 // Ignore factory; use global cache.
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000248 success = SkCachingPixelRef::Install(gen.detach(), &lazy);
249 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700250 success = SkInstallDiscardablePixelRef(gen.detach(), nullptr, &lazy, factory);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000251 }
reed3ef71e32015-03-19 08:31:14 -0700252 REPORTER_ASSERT(reporter, success);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000253 if (TestImageGenerator::kSucceedGetPixels_TestType == type) {
tfarina@chromium.org58674812014-01-21 23:39:22 +0000254 check_test_image_generator_bitmap(reporter, lazy);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000255 } else if (TestImageGenerator::kFailGetPixels_TestType == type) {
256 SkAutoLockPixels autoLockPixels(lazy);
halcanary96fcdcc2015-08-27 07:41:13 -0700257 REPORTER_ASSERT(reporter, nullptr == lazy.getPixels());
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000258 }
259}
reed@google.com1d0654f2013-12-12 22:37:32 +0000260
261// new/lock/delete is an odd pattern for a pixelref, but it needs to not assert
262static void test_newlockdelete(skiatest::Reporter* reporter) {
reedab865772015-05-21 06:29:05 -0700263#ifdef SK_SUPPORT_LEGACY_UNBALANCED_PIXELREF_LOCKCOUNT
reed@google.com1d0654f2013-12-12 22:37:32 +0000264 SkBitmap bm;
265 SkImageGenerator* ig = new TestImageGenerator(
tfarina@chromium.org58674812014-01-21 23:39:22 +0000266 TestImageGenerator::kSucceedGetPixels_TestType, reporter);
commit-bot@chromium.org2d970b52014-05-27 14:14:22 +0000267 SkInstallDiscardablePixelRef(ig, &bm);
reed@google.com1d0654f2013-12-12 22:37:32 +0000268 bm.pixelRef()->lockPixels();
reedab865772015-05-21 06:29:05 -0700269#endif
reed@google.com1d0654f2013-12-12 22:37:32 +0000270}
271
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000272/**
273 * This tests the basic functionality of SkDiscardablePixelRef with a
274 * basic SkImageGenerator implementation and several
275 * SkDiscardableMemory::Factory choices.
276 */
277DEF_TEST(DiscardableAndCachingPixelRef, reporter) {
reed@google.com1d0654f2013-12-12 22:37:32 +0000278 test_newlockdelete(reporter);
279
tfarina@chromium.org58674812014-01-21 23:39:22 +0000280 check_pixelref(TestImageGenerator::kFailGetPixels_TestType,
halcanary96fcdcc2015-08-27 07:41:13 -0700281 reporter, kSkCaching_PixelRefType, nullptr);
tfarina@chromium.org58674812014-01-21 23:39:22 +0000282 check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType,
halcanary96fcdcc2015-08-27 07:41:13 -0700283 reporter, kSkCaching_PixelRefType, nullptr);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000284
tfarina@chromium.org58674812014-01-21 23:39:22 +0000285 check_pixelref(TestImageGenerator::kFailGetPixels_TestType,
halcanary96fcdcc2015-08-27 07:41:13 -0700286 reporter, kSkDiscardable_PixelRefType, nullptr);
tfarina@chromium.org58674812014-01-21 23:39:22 +0000287 check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType,
halcanary96fcdcc2015-08-27 07:41:13 -0700288 reporter, kSkDiscardable_PixelRefType, nullptr);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000289
290 SkAutoTUnref<SkDiscardableMemoryPool> pool(
halcanary96fcdcc2015-08-27 07:41:13 -0700291 SkDiscardableMemoryPool::Create(1, nullptr));
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000292 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
tfarina@chromium.org58674812014-01-21 23:39:22 +0000293 check_pixelref(TestImageGenerator::kFailGetPixels_TestType,
294 reporter, kSkDiscardable_PixelRefType, pool);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000295 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
tfarina@chromium.org58674812014-01-21 23:39:22 +0000296 check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType,
297 reporter, kSkDiscardable_PixelRefType, pool);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000298 REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed());
299
300 SkDiscardableMemoryPool* globalPool = SkGetGlobalDiscardableMemoryPool();
halcanary96fcdcc2015-08-27 07:41:13 -0700301 // Only acts differently from nullptr on a platform that has a
halcanary@google.combc55eec2013-12-10 18:33:07 +0000302 // default discardable memory implementation that differs from the
303 // global DM pool.
tfarina@chromium.org58674812014-01-21 23:39:22 +0000304 check_pixelref(TestImageGenerator::kFailGetPixels_TestType,
305 reporter, kSkDiscardable_PixelRefType, globalPool);
306 check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType,
307 reporter, kSkDiscardable_PixelRefType, globalPool);
halcanary@google.com2c7c7ee2013-12-05 18:31:42 +0000308}
halcanaryea4673f2014-08-18 08:27:09 -0700309
310////////////////////////////////////////////////////////////////////////////////
311
312DEF_TEST(Image_NewFromGenerator, r) {
313 TestImageGenerator::TestType testTypes[] = {
halcanaryea4673f2014-08-18 08:27:09 -0700314 TestImageGenerator::kFailGetPixels_TestType,
315 TestImageGenerator::kSucceedGetPixels_TestType,
316 };
317 for (size_t i = 0; i < SK_ARRAY_COUNT(testTypes); ++i) {
318 TestImageGenerator::TestType test = testTypes[i];
halcanary385fe4d2015-08-26 13:07:48 -0700319 SkImageGenerator* gen = new TestImageGenerator(test, r);
halcanaryea4673f2014-08-18 08:27:09 -0700320 SkAutoTUnref<SkImage> image(SkImage::NewFromGenerator(gen));
halcanary96fcdcc2015-08-27 07:41:13 -0700321 if (nullptr == image.get()) {
halcanaryea4673f2014-08-18 08:27:09 -0700322 ERRORF(r, "SkImage::NewFromGenerator unexpecedly failed ["
323 SK_SIZE_T_SPECIFIER "]", i);
324 continue;
325 }
326 REPORTER_ASSERT(r, TestImageGenerator::Width() == image->width());
327 REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height());
fmalitaddbbdda2015-08-20 08:47:26 -0700328 REPORTER_ASSERT(r, image->isLazyGenerated());
halcanaryea4673f2014-08-18 08:27:09 -0700329
330 SkBitmap bitmap;
reed84825042014-09-02 12:50:45 -0700331 bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height());
halcanaryea4673f2014-08-18 08:27:09 -0700332 SkCanvas canvas(bitmap);
333 const SkColor kDefaultColor = 0xffabcdef;
334 canvas.clear(kDefaultColor);
halcanary96fcdcc2015-08-27 07:41:13 -0700335 canvas.drawImage(image, 0, 0, nullptr);
halcanaryea4673f2014-08-18 08:27:09 -0700336 if (TestImageGenerator::kSucceedGetPixels_TestType == test) {
337 REPORTER_ASSERT(
338 r, TestImageGenerator::Color() == *bitmap.getAddr32(0, 0));
339 } else {
340 REPORTER_ASSERT(r, kDefaultColor == bitmap.getColor(0,0));
341 }
342 }
343}