commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 1 | /* |
| 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.org | 8f6884a | 2014-01-24 20:56:26 +0000 | [diff] [blame] | 9 | #include "SkCachingPixelRef.h" |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 10 | #include "SkCanvas.h" |
| 11 | #include "SkData.h" |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 12 | #include "SkDiscardableMemoryPool.h" |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 13 | #include "SkImageDecoder.h" |
commit-bot@chromium.org | 2d970b5 | 2014-05-27 14:14:22 +0000 | [diff] [blame] | 14 | #include "SkImageGeneratorPriv.h" |
reed | 011f39a | 2014-08-28 13:35:23 -0700 | [diff] [blame] | 15 | #include "SkResourceCache.h" |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 16 | #include "SkStream.h" |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 17 | #include "SkUtils.h" |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 18 | |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 19 | #include "Test.h" |
| 20 | |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 21 | /** |
| 22 | * Fill this bitmap with some color. |
| 23 | */ |
| 24 | static void make_test_image(SkBitmap* bm) { |
reed | 6c22573 | 2014-06-09 19:52:07 -0700 | [diff] [blame] | 25 | const int W = 50, H = 50; |
| 26 | bm->allocN32Pixels(W, H); |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 27 | 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 | */ |
| 41 | static 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 | } |
| 47 | return NULL; |
| 48 | } |
| 49 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 50 | //////////////////////////////////////////////////////////////////////////////// |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 51 | |
| 52 | static 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 | } |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 65 | REPORTER_ASSERT(reporter, b1.getPixels()); |
| 66 | REPORTER_ASSERT(reporter, b2.getPixels()); |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 67 | 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.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 77 | |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 78 | 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.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 89 | typedef bool (*InstallEncoded)(SkData* encoded, SkBitmap* dst); |
| 90 | |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 91 | /** |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 92 | This function tests three differently encoded images against the |
| 93 | original bitmap */ |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 94 | static void test_three_encodings(skiatest::Reporter* reporter, |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 95 | InstallEncoded install) { |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 96 | SkBitmap original; |
| 97 | make_test_image(&original); |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 98 | REPORTER_ASSERT(reporter, !original.empty()); |
| 99 | REPORTER_ASSERT(reporter, !original.isNull()); |
| 100 | if (original.empty() || original.isNull()) { |
| 101 | return; |
| 102 | } |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 103 | static const SkImageEncoder::Type types[] = { |
| 104 | SkImageEncoder::kPNG_Type, |
| 105 | SkImageEncoder::kJPEG_Type, |
| 106 | SkImageEncoder::kWEBP_Type |
| 107 | }; |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 108 | 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)); |
| 111 | REPORTER_ASSERT(reporter, encoded.get() != NULL); |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 112 | if (NULL == encoded.get()) { |
| 113 | continue; |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 114 | } |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 115 | SkBitmap lazy; |
| 116 | bool installSuccess = install(encoded.get(), &lazy); |
| 117 | REPORTER_ASSERT(reporter, installSuccess); |
| 118 | if (!installSuccess) { |
| 119 | continue; |
| 120 | } |
| 121 | REPORTER_ASSERT(reporter, NULL == lazy.getPixels()); |
| 122 | { |
| 123 | SkAutoLockPixels autoLockPixels(lazy); // now pixels are good. |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 124 | REPORTER_ASSERT(reporter, lazy.getPixels()); |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 125 | if (NULL == lazy.getPixels()) { |
| 126 | continue; |
| 127 | } |
| 128 | } |
| 129 | // pixels should be gone! |
| 130 | REPORTER_ASSERT(reporter, NULL == lazy.getPixels()); |
| 131 | { |
| 132 | SkAutoLockPixels autoLockPixels(lazy); // now pixels are good. |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 133 | REPORTER_ASSERT(reporter, lazy.getPixels()); |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 134 | if (NULL == lazy.getPixels()) { |
| 135 | continue; |
| 136 | } |
| 137 | } |
| 138 | bool comparePixels = (SkImageEncoder::kPNG_Type == type); |
| 139 | compare_bitmaps(reporter, original, lazy, comparePixels); |
commit-bot@chromium.org | 7585479 | 2013-10-29 19:55:00 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 142 | |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 143 | //////////////////////////////////////////////////////////////////////////////// |
halcanary@google.com | dcfebfa | 2013-12-05 14:18:07 +0000 | [diff] [blame] | 144 | static bool install_skCachingPixelRef(SkData* encoded, SkBitmap* dst) { |
reed | 5965c8a | 2015-01-07 18:04:45 -0800 | [diff] [blame] | 145 | return SkCachingPixelRef::Install(SkImageGenerator::NewFromData(encoded), dst); |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 146 | } |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 147 | static bool install_skDiscardablePixelRef(SkData* encoded, SkBitmap* dst) { |
| 148 | // Use system-default discardable memory. |
reed | 5965c8a | 2015-01-07 18:04:45 -0800 | [diff] [blame] | 149 | return SkInstallDiscardablePixelRef(encoded, dst); |
commit-bot@chromium.org | 6e3e422 | 2013-11-06 10:08:30 +0000 | [diff] [blame] | 150 | } |
halcanary@google.com | ad04eb4 | 2013-11-21 15:32:08 +0000 | [diff] [blame] | 151 | |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 152 | //////////////////////////////////////////////////////////////////////////////// |
| 153 | /** |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 154 | * This checks to see that a SkCachingPixelRef and a |
| 155 | * SkDiscardablePixelRef works as advertised with a |
| 156 | * SkDecodingImageGenerator. |
halcanary@google.com | 36d08c5 | 2013-12-05 14:00:03 +0000 | [diff] [blame] | 157 | */ |
halcanary@google.com | ad04eb4 | 2013-11-21 15:32:08 +0000 | [diff] [blame] | 158 | DEF_TEST(DecodingImageGenerator, reporter) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 159 | test_three_encodings(reporter, install_skCachingPixelRef); |
| 160 | test_three_encodings(reporter, install_skDiscardablePixelRef); |
halcanary@google.com | ad04eb4 | 2013-11-21 15:32:08 +0000 | [diff] [blame] | 161 | } |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 162 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 163 | class TestImageGenerator : public SkImageGenerator { |
| 164 | public: |
| 165 | enum TestType { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 166 | kFailGetPixels_TestType, |
| 167 | kSucceedGetPixels_TestType, |
| 168 | kLast_TestType = kSucceedGetPixels_TestType |
| 169 | }; |
| 170 | static int Width() { return 10; } |
| 171 | static int Height() { return 10; } |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 172 | static uint32_t Color() { return 0xff123456; } |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 173 | TestImageGenerator(TestType type, skiatest::Reporter* reporter) |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 174 | : INHERITED(GetMyInfo()), fType(type), fReporter(reporter) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 175 | SkASSERT((fType <= kLast_TestType) && (fType >= 0)); |
| 176 | } |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 177 | virtual ~TestImageGenerator() { } |
commit-bot@chromium.org | 00f8d6c | 2014-05-29 15:57:20 +0000 | [diff] [blame] | 178 | |
| 179 | protected: |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 180 | static SkImageInfo GetMyInfo() { |
| 181 | return SkImageInfo::MakeN32(TestImageGenerator::Width(), TestImageGenerator::Height(), |
| 182 | kOpaque_SkAlphaType); |
| 183 | } |
| 184 | |
| 185 | #ifdef SK_SUPPORT_LEGACY_BOOL_ONGETINFO |
mtklein | 72c9faa | 2015-01-09 10:06:39 -0800 | [diff] [blame] | 186 | bool onGetInfo(SkImageInfo* info) SK_OVERRIDE { |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 187 | REPORTER_ASSERT(fReporter, info); |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 188 | *info = GetMyInfo(); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 189 | return true; |
| 190 | } |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 191 | #endif |
commit-bot@chromium.org | 00f8d6c | 2014-05-29 15:57:20 +0000 | [diff] [blame] | 192 | |
scroggo | 87fa631 | 2015-02-19 18:44:58 -0800 | [diff] [blame] | 193 | virtual Result onGetPixels(const SkImageInfo& info, void* pixels, size_t rowBytes, |
scroggo | 9552662 | 2015-03-17 05:02:17 -0700 | [diff] [blame] | 194 | const Options&, |
scroggo | 0864908 | 2015-02-13 11:13:34 -0800 | [diff] [blame] | 195 | SkPMColor ctable[], int* ctableCount) SK_OVERRIDE { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 196 | REPORTER_ASSERT(fReporter, pixels != NULL); |
scroggo | 0864908 | 2015-02-13 11:13:34 -0800 | [diff] [blame] | 197 | REPORTER_ASSERT(fReporter, rowBytes >= info.minRowBytes()); |
| 198 | if (fType != kSucceedGetPixels_TestType) { |
| 199 | return kUnimplemented; |
| 200 | } |
| 201 | if (info.colorType() != kN32_SkColorType) { |
| 202 | return kInvalidConversion; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 203 | } |
| 204 | char* bytePtr = static_cast<char*>(pixels); |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 205 | for (int y = 0; y < info.height(); ++y) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 206 | sk_memset32(reinterpret_cast<SkColor*>(bytePtr), |
reed | e5ea500 | 2014-09-03 11:54:58 -0700 | [diff] [blame] | 207 | TestImageGenerator::Color(), info.width()); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 208 | bytePtr += rowBytes; |
| 209 | } |
scroggo | 0864908 | 2015-02-13 11:13:34 -0800 | [diff] [blame] | 210 | return kSuccess; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 211 | } |
halcanary@google.com | 3d50ea1 | 2014-01-02 13:15:13 +0000 | [diff] [blame] | 212 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 213 | private: |
| 214 | const TestType fType; |
| 215 | skiatest::Reporter* const fReporter; |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 216 | |
| 217 | typedef SkImageGenerator INHERITED; |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 218 | }; |
halcanary@google.com | 3d50ea1 | 2014-01-02 13:15:13 +0000 | [diff] [blame] | 219 | |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 220 | static void check_test_image_generator_bitmap(skiatest::Reporter* reporter, |
| 221 | const SkBitmap& bm) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 222 | REPORTER_ASSERT(reporter, TestImageGenerator::Width() == bm.width()); |
| 223 | REPORTER_ASSERT(reporter, TestImageGenerator::Height() == bm.height()); |
| 224 | SkAutoLockPixels autoLockPixels(bm); |
bsalomon | 49f085d | 2014-09-05 13:34:00 -0700 | [diff] [blame] | 225 | REPORTER_ASSERT(reporter, bm.getPixels()); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 226 | if (NULL == bm.getPixels()) { |
| 227 | return; |
| 228 | } |
| 229 | int errors = 0; |
| 230 | for (int y = 0; y < bm.height(); ++y) { |
| 231 | for (int x = 0; x < bm.width(); ++x) { |
| 232 | if (TestImageGenerator::Color() != *bm.getAddr32(x, y)) { |
| 233 | ++errors; |
| 234 | } |
| 235 | } |
| 236 | } |
| 237 | REPORTER_ASSERT(reporter, 0 == errors); |
| 238 | } |
| 239 | |
| 240 | enum PixelRefType { |
| 241 | kSkCaching_PixelRefType, |
| 242 | kSkDiscardable_PixelRefType, |
| 243 | kLast_PixelRefType = kSkDiscardable_PixelRefType |
| 244 | }; |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 245 | |
| 246 | static void check_pixelref(TestImageGenerator::TestType type, |
| 247 | skiatest::Reporter* reporter, |
| 248 | PixelRefType pixelRefType, |
| 249 | SkDiscardableMemory::Factory* factory) { |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 250 | SkASSERT((pixelRefType >= 0) && (pixelRefType <= kLast_PixelRefType)); |
| 251 | SkAutoTDelete<SkImageGenerator> gen(SkNEW_ARGS(TestImageGenerator, |
| 252 | (type, reporter))); |
| 253 | REPORTER_ASSERT(reporter, gen.get() != NULL); |
| 254 | SkBitmap lazy; |
| 255 | bool success; |
| 256 | if (kSkCaching_PixelRefType == pixelRefType) { |
reed | 011f39a | 2014-08-28 13:35:23 -0700 | [diff] [blame] | 257 | // Ignore factory; use global cache. |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 258 | success = SkCachingPixelRef::Install(gen.detach(), &lazy); |
| 259 | } else { |
halcanary@google.com | edd370f | 2013-12-10 21:11:12 +0000 | [diff] [blame] | 260 | success = SkInstallDiscardablePixelRef(gen.detach(), &lazy, factory); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 261 | } |
reed | 3ef71e3 | 2015-03-19 08:31:14 -0700 | [diff] [blame] | 262 | REPORTER_ASSERT(reporter, success); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 263 | if (TestImageGenerator::kSucceedGetPixels_TestType == type) { |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 264 | check_test_image_generator_bitmap(reporter, lazy); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 265 | } else if (TestImageGenerator::kFailGetPixels_TestType == type) { |
| 266 | SkAutoLockPixels autoLockPixels(lazy); |
| 267 | REPORTER_ASSERT(reporter, NULL == lazy.getPixels()); |
| 268 | } |
| 269 | } |
reed@google.com | 1d0654f | 2013-12-12 22:37:32 +0000 | [diff] [blame] | 270 | |
| 271 | // new/lock/delete is an odd pattern for a pixelref, but it needs to not assert |
| 272 | static void test_newlockdelete(skiatest::Reporter* reporter) { |
| 273 | SkBitmap bm; |
| 274 | SkImageGenerator* ig = new TestImageGenerator( |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 275 | TestImageGenerator::kSucceedGetPixels_TestType, reporter); |
commit-bot@chromium.org | 2d970b5 | 2014-05-27 14:14:22 +0000 | [diff] [blame] | 276 | SkInstallDiscardablePixelRef(ig, &bm); |
reed@google.com | 1d0654f | 2013-12-12 22:37:32 +0000 | [diff] [blame] | 277 | bm.pixelRef()->lockPixels(); |
| 278 | } |
| 279 | |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 280 | /** |
| 281 | * This tests the basic functionality of SkDiscardablePixelRef with a |
| 282 | * basic SkImageGenerator implementation and several |
| 283 | * SkDiscardableMemory::Factory choices. |
| 284 | */ |
| 285 | DEF_TEST(DiscardableAndCachingPixelRef, reporter) { |
reed@google.com | 1d0654f | 2013-12-12 22:37:32 +0000 | [diff] [blame] | 286 | test_newlockdelete(reporter); |
| 287 | |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 288 | check_pixelref(TestImageGenerator::kFailGetPixels_TestType, |
| 289 | reporter, kSkCaching_PixelRefType, NULL); |
| 290 | check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, |
| 291 | reporter, kSkCaching_PixelRefType, NULL); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 292 | |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 293 | check_pixelref(TestImageGenerator::kFailGetPixels_TestType, |
| 294 | reporter, kSkDiscardable_PixelRefType, NULL); |
| 295 | check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, |
| 296 | reporter, kSkDiscardable_PixelRefType, NULL); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 297 | |
| 298 | SkAutoTUnref<SkDiscardableMemoryPool> pool( |
commit-bot@chromium.org | cf2f008 | 2014-04-04 16:43:38 +0000 | [diff] [blame] | 299 | SkDiscardableMemoryPool::Create(1, NULL)); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 300 | REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed()); |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 301 | check_pixelref(TestImageGenerator::kFailGetPixels_TestType, |
| 302 | reporter, kSkDiscardable_PixelRefType, pool); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 303 | REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed()); |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 304 | check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, |
| 305 | reporter, kSkDiscardable_PixelRefType, pool); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 306 | REPORTER_ASSERT(reporter, 0 == pool->getRAMUsed()); |
| 307 | |
| 308 | SkDiscardableMemoryPool* globalPool = SkGetGlobalDiscardableMemoryPool(); |
halcanary@google.com | bc55eec | 2013-12-10 18:33:07 +0000 | [diff] [blame] | 309 | // Only acts differently from NULL on a platform that has a |
| 310 | // default discardable memory implementation that differs from the |
| 311 | // global DM pool. |
tfarina@chromium.org | 5867481 | 2014-01-21 23:39:22 +0000 | [diff] [blame] | 312 | check_pixelref(TestImageGenerator::kFailGetPixels_TestType, |
| 313 | reporter, kSkDiscardable_PixelRefType, globalPool); |
| 314 | check_pixelref(TestImageGenerator::kSucceedGetPixels_TestType, |
| 315 | reporter, kSkDiscardable_PixelRefType, globalPool); |
halcanary@google.com | 2c7c7ee | 2013-12-05 18:31:42 +0000 | [diff] [blame] | 316 | } |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 317 | |
| 318 | //////////////////////////////////////////////////////////////////////////////// |
| 319 | |
| 320 | DEF_TEST(Image_NewFromGenerator, r) { |
| 321 | TestImageGenerator::TestType testTypes[] = { |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 322 | TestImageGenerator::kFailGetPixels_TestType, |
| 323 | TestImageGenerator::kSucceedGetPixels_TestType, |
| 324 | }; |
| 325 | for (size_t i = 0; i < SK_ARRAY_COUNT(testTypes); ++i) { |
| 326 | TestImageGenerator::TestType test = testTypes[i]; |
| 327 | SkImageGenerator* gen = SkNEW_ARGS(TestImageGenerator, (test, r)); |
| 328 | SkAutoTUnref<SkImage> image(SkImage::NewFromGenerator(gen)); |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 329 | if (NULL == image.get()) { |
| 330 | ERRORF(r, "SkImage::NewFromGenerator unexpecedly failed [" |
| 331 | SK_SIZE_T_SPECIFIER "]", i); |
| 332 | continue; |
| 333 | } |
| 334 | REPORTER_ASSERT(r, TestImageGenerator::Width() == image->width()); |
| 335 | REPORTER_ASSERT(r, TestImageGenerator::Height() == image->height()); |
| 336 | |
| 337 | SkBitmap bitmap; |
reed | 8482504 | 2014-09-02 12:50:45 -0700 | [diff] [blame] | 338 | bitmap.allocN32Pixels(TestImageGenerator::Width(), TestImageGenerator::Height()); |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 339 | SkCanvas canvas(bitmap); |
| 340 | const SkColor kDefaultColor = 0xffabcdef; |
| 341 | canvas.clear(kDefaultColor); |
piotaixr | b5fae93 | 2014-09-24 13:03:30 -0700 | [diff] [blame] | 342 | canvas.drawImage(image, 0, 0, NULL); |
halcanary | ea4673f | 2014-08-18 08:27:09 -0700 | [diff] [blame] | 343 | if (TestImageGenerator::kSucceedGetPixels_TestType == test) { |
| 344 | REPORTER_ASSERT( |
| 345 | r, TestImageGenerator::Color() == *bitmap.getAddr32(0, 0)); |
| 346 | } else { |
| 347 | REPORTER_ASSERT(r, kDefaultColor == bitmap.getColor(0,0)); |
| 348 | } |
| 349 | } |
| 350 | } |