blob: 2a8c8e45e2d47508a058d0d5256d8d6d206b01ce [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2008 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#include "SkBitmap.h"
11#include "SkColorPriv.h"
12#include "SkDither.h"
13#include "SkFlattenable.h"
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +000014#include "SkImagePriv.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkMallocPixelRef.h"
16#include "SkMask.h"
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000017#include "SkReadBuffer.h"
18#include "SkWriteBuffer.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000019#include "SkPixelRef.h"
20#include "SkThread.h"
vandebo@chromium.org112706d2011-02-24 22:50:55 +000021#include "SkUnPreMultiply.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000022#include "SkUtils.h"
commit-bot@chromium.orgc0b7e102013-10-23 17:06:21 +000023#include "SkValidationUtils.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000024#include "SkPackBits.h"
25#include <new>
26
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +000027static bool reset_return_false(SkBitmap* bm) {
28 bm->reset();
29 return false;
30}
31
reed@android.com8a1c16f2008-12-17 15:59:43 +000032struct MipLevel {
33 void* fPixels;
34 uint32_t fRowBytes;
reed@android.comf459a492009-03-27 12:33:50 +000035 uint32_t fWidth, fHeight;
reed@android.com8a1c16f2008-12-17 15:59:43 +000036};
37
38struct SkBitmap::MipMap : SkNoncopyable {
39 int32_t fRefCnt;
40 int fLevelCount;
41// MipLevel fLevel[fLevelCount];
42// Pixels[]
weita@google.comf9ab99a2009-05-03 18:23:30 +000043
reed@android.com8a1c16f2008-12-17 15:59:43 +000044 static MipMap* Alloc(int levelCount, size_t pixelSize) {
reed@android.com149e2f62009-05-22 14:39:03 +000045 if (levelCount < 0) {
46 return NULL;
47 }
reed@google.com57212f92013-12-30 14:40:38 +000048 int64_t size = (levelCount + 1) * sizeof(MipLevel);
49 size += sizeof(MipMap) + pixelSize;
50 if (!sk_64_isS32(size)) {
reed@android.com149e2f62009-05-22 14:39:03 +000051 return NULL;
52 }
reed@google.com57212f92013-12-30 14:40:38 +000053 MipMap* mm = (MipMap*)sk_malloc_throw(sk_64_asS32(size));
reed@android.com8a1c16f2008-12-17 15:59:43 +000054 mm->fRefCnt = 1;
55 mm->fLevelCount = levelCount;
56 return mm;
57 }
58
59 const MipLevel* levels() const { return (const MipLevel*)(this + 1); }
60 MipLevel* levels() { return (MipLevel*)(this + 1); }
61
62 const void* pixels() const { return levels() + fLevelCount; }
63 void* pixels() { return levels() + fLevelCount; }
weita@google.comf9ab99a2009-05-03 18:23:30 +000064
reed@android.com149e2f62009-05-22 14:39:03 +000065 void ref() {
66 if (SK_MaxS32 == sk_atomic_inc(&fRefCnt)) {
67 sk_throw();
reed@android.com8a1c16f2008-12-17 15:59:43 +000068 }
69 }
reed@android.com149e2f62009-05-22 14:39:03 +000070 void unref() {
71 SkASSERT(fRefCnt > 0);
72 if (sk_atomic_dec(&fRefCnt) == 1) {
73 sk_free(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 }
75 }
76};
reed@android.com8a1c16f2008-12-17 15:59:43 +000077
78///////////////////////////////////////////////////////////////////////////////
79///////////////////////////////////////////////////////////////////////////////
80
81SkBitmap::SkBitmap() {
reed@android.com4516f472009-06-29 16:25:36 +000082 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +000083}
84
85SkBitmap::SkBitmap(const SkBitmap& src) {
86 SkDEBUGCODE(src.validate();)
reed@android.com4516f472009-06-29 16:25:36 +000087 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +000088 *this = src;
89 SkDEBUGCODE(this->validate();)
90}
91
92SkBitmap::~SkBitmap() {
93 SkDEBUGCODE(this->validate();)
94 this->freePixels();
95}
96
97SkBitmap& SkBitmap::operator=(const SkBitmap& src) {
98 if (this != &src) {
99 this->freePixels();
100 memcpy(this, &src, sizeof(src));
101
102 // inc src reference counts
reed@android.com83f7bc32009-07-17 02:42:41 +0000103 SkSafeRef(src.fPixelRef);
reed@android.com149e2f62009-05-22 14:39:03 +0000104 SkSafeRef(src.fMipMap);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105
106 // we reset our locks if we get blown away
107 fPixelLockCount = 0;
weita@google.comf9ab99a2009-05-03 18:23:30 +0000108
reed@google.com5f62ed72014-01-15 19:59:45 +0000109 if (fPixelRef) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000110 // ignore the values from the memcpy
111 fPixels = NULL;
112 fColorTable = NULL;
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000113 // Note that what to for genID is somewhat arbitrary. We have no
114 // way to track changes to raw pixels across multiple SkBitmaps.
115 // Would benefit from an SkRawPixelRef type created by
116 // setPixels.
117 // Just leave the memcpy'ed one but they'll get out of sync
118 // as soon either is modified.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000119 }
120 }
121
122 SkDEBUGCODE(this->validate();)
123 return *this;
124}
125
126void SkBitmap::swap(SkBitmap& other) {
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000127 SkTSwap(fColorTable, other.fColorTable);
128 SkTSwap(fPixelRef, other.fPixelRef);
reed@google.com672588b2014-01-08 15:42:01 +0000129 SkTSwap(fPixelRefOrigin, other.fPixelRefOrigin);
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000130 SkTSwap(fPixelLockCount, other.fPixelLockCount);
131 SkTSwap(fMipMap, other.fMipMap);
132 SkTSwap(fPixels, other.fPixels);
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000133 SkTSwap(fInfo, other.fInfo);
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000134 SkTSwap(fRowBytes, other.fRowBytes);
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000135 SkTSwap(fFlags, other.fFlags);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000136
137 SkDEBUGCODE(this->validate();)
138}
139
140void SkBitmap::reset() {
141 this->freePixels();
reed@android.com4516f472009-06-29 16:25:36 +0000142 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +0000143}
144
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000145SkBitmap::Config SkBitmap::config() const {
146 return SkColorTypeToBitmapConfig(fInfo.colorType());
147}
148
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149int SkBitmap::ComputeBytesPerPixel(SkBitmap::Config config) {
150 int bpp;
151 switch (config) {
152 case kNo_Config:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000153 bpp = 0; // not applicable
154 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000155 case kA8_Config:
156 case kIndex8_Config:
157 bpp = 1;
158 break;
159 case kRGB_565_Config:
160 case kARGB_4444_Config:
161 bpp = 2;
162 break;
163 case kARGB_8888_Config:
164 bpp = 4;
165 break;
166 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000167 SkDEBUGFAIL("unknown config");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000168 bpp = 0; // error
169 break;
170 }
171 return bpp;
172}
173
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000174size_t SkBitmap::ComputeRowBytes(Config c, int width) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000175 return SkColorTypeMinRowBytes(SkBitmapConfigToColorType(c), width);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000176}
177
reed@google.com57212f92013-12-30 14:40:38 +0000178int64_t SkBitmap::ComputeSize64(Config config, int width, int height) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000179 SkColorType ct = SkBitmapConfigToColorType(config);
180 int64_t rowBytes = sk_64_mul(SkColorTypeBytesPerPixel(ct), width);
reed@google.com57212f92013-12-30 14:40:38 +0000181 return rowBytes * height;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000182}
183
184size_t SkBitmap::ComputeSize(Config c, int width, int height) {
reed@google.com57212f92013-12-30 14:40:38 +0000185 int64_t size = SkBitmap::ComputeSize64(c, width, height);
186 return sk_64_isS32(size) ? sk_64_asS32(size) : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000187}
188
reed@google.com57212f92013-12-30 14:40:38 +0000189int64_t SkBitmap::ComputeSafeSize64(Config config,
190 uint32_t width,
191 uint32_t height,
192 size_t rowBytes) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000193 SkImageInfo info = SkImageInfo::Make(width, height,
194 SkBitmapConfigToColorType(config),
195 kPremul_SkAlphaType);
196 return info.getSafeSize64(rowBytes);
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000197}
198
199size_t SkBitmap::ComputeSafeSize(Config config,
200 uint32_t width,
201 uint32_t height,
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000202 size_t rowBytes) {
reed@google.com57212f92013-12-30 14:40:38 +0000203 int64_t safeSize = ComputeSafeSize64(config, width, height, rowBytes);
204 int32_t safeSize32 = (int32_t)safeSize;
skia.committer@gmail.comf5e1f632013-12-31 07:01:36 +0000205
reed@google.com57212f92013-12-30 14:40:38 +0000206 if (safeSize32 != safeSize) {
207 safeSize32 = 0;
208 }
209 return safeSize32;
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000210}
211
reed@google.com86b2e432012-03-15 21:17:03 +0000212void SkBitmap::getBounds(SkRect* bounds) const {
213 SkASSERT(bounds);
214 bounds->set(0, 0,
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000215 SkIntToScalar(fInfo.fWidth), SkIntToScalar(fInfo.fHeight));
reed@google.com86b2e432012-03-15 21:17:03 +0000216}
217
reed@google.com80e14592012-03-16 14:58:07 +0000218void SkBitmap::getBounds(SkIRect* bounds) const {
219 SkASSERT(bounds);
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000220 bounds->set(0, 0, fInfo.fWidth, fInfo.fHeight);
reed@google.com80e14592012-03-16 14:58:07 +0000221}
222
reed@google.com86b2e432012-03-15 21:17:03 +0000223///////////////////////////////////////////////////////////////////////////////
224
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000225static bool validate_alphaType(SkColorType colorType, SkAlphaType alphaType,
commit-bot@chromium.orgc0b7e102013-10-23 17:06:21 +0000226 SkAlphaType* canonical = NULL) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000227 switch (colorType) {
228 case kUnknown_SkColorType:
reed@google.com383a6972013-10-21 14:00:07 +0000229 alphaType = kIgnore_SkAlphaType;
230 break;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000231 case kAlpha_8_SkColorType:
reed@google.com383a6972013-10-21 14:00:07 +0000232 if (kUnpremul_SkAlphaType == alphaType) {
233 alphaType = kPremul_SkAlphaType;
234 }
235 // fall-through
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000236 case kIndex_8_SkColorType:
237 case kARGB_4444_SkColorType:
238 case kRGBA_8888_SkColorType:
239 case kBGRA_8888_SkColorType:
reed@google.com383a6972013-10-21 14:00:07 +0000240 if (kIgnore_SkAlphaType == alphaType) {
241 return false;
242 }
243 break;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000244 case kRGB_565_SkColorType:
reed@google.com383a6972013-10-21 14:00:07 +0000245 alphaType = kOpaque_SkAlphaType;
246 break;
rmistry@google.comd6bab022013-12-02 13:50:38 +0000247 default:
248 return false;
reed@android.com149e2f62009-05-22 14:39:03 +0000249 }
reed@google.com383a6972013-10-21 14:00:07 +0000250 if (canonical) {
251 *canonical = alphaType;
252 }
253 return true;
254}
reed@android.com149e2f62009-05-22 14:39:03 +0000255
commit-bot@chromium.orgd5414e52014-02-13 22:30:38 +0000256bool SkBitmap::setConfig(const SkImageInfo& origInfo, size_t rowBytes) {
257 SkImageInfo info = origInfo;
258
259 if (!validate_alphaType(info.fColorType, info.fAlphaType,
260 &info.fAlphaType)) {
261 return reset_return_false(this);
262 }
skia.committer@gmail.com02d6f542014-02-14 03:02:05 +0000263
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000264 // require that rowBytes fit in 31bits
265 int64_t mrb = info.minRowBytes64();
266 if ((int32_t)mrb != mrb) {
267 return reset_return_false(this);
reed@google.com383a6972013-10-21 14:00:07 +0000268 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000269 if ((int64_t)rowBytes != (int32_t)rowBytes) {
270 return reset_return_false(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000271 }
reed@android.com89bb83a2009-05-29 21:30:42 +0000272
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000273 if (info.width() < 0 || info.height() < 0) {
274 return reset_return_false(this);
275 }
276
277 if (kUnknown_SkColorType == info.colorType()) {
278 rowBytes = 0;
279 } else if (0 == rowBytes) {
280 rowBytes = (size_t)mrb;
281 } else if (rowBytes < info.minRowBytes()) {
282 return reset_return_false(this);
reed@google.com383a6972013-10-21 14:00:07 +0000283 }
284
285 this->freePixels();
286
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000287 fInfo = info;
288 fRowBytes = SkToU32(rowBytes);
reed@google.com383a6972013-10-21 14:00:07 +0000289 return true;
reed@google.com383a6972013-10-21 14:00:07 +0000290}
291
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000292bool SkBitmap::setConfig(Config config, int width, int height, size_t rowBytes,
293 SkAlphaType alphaType) {
294 SkColorType ct = SkBitmapConfigToColorType(config);
295 return this->setConfig(SkImageInfo::Make(width, height, ct, alphaType),
296 rowBytes);
commit-bot@chromium.org6e3e4222013-11-06 10:08:30 +0000297}
298
reed@google.com383a6972013-10-21 14:00:07 +0000299bool SkBitmap::setAlphaType(SkAlphaType alphaType) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000300 if (!validate_alphaType(fInfo.fColorType, alphaType, &alphaType)) {
reed@google.com383a6972013-10-21 14:00:07 +0000301 return false;
302 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000303 if (fInfo.fAlphaType != alphaType) {
304 fInfo.fAlphaType = alphaType;
commit-bot@chromium.org0e8d0d62014-01-27 15:41:07 +0000305 if (fPixelRef) {
reed@google.comc1587f92014-01-28 16:05:39 +0000306 fPixelRef->changeAlphaType(alphaType);
commit-bot@chromium.org0e8d0d62014-01-27 15:41:07 +0000307 }
308 }
reed@google.com383a6972013-10-21 14:00:07 +0000309 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000310}
311
312void SkBitmap::updatePixelsFromRef() const {
313 if (NULL != fPixelRef) {
314 if (fPixelLockCount > 0) {
reed@google.comff0da4f2012-05-17 13:14:52 +0000315 SkASSERT(fPixelRef->isLocked());
weita@google.comf9ab99a2009-05-03 18:23:30 +0000316
reed@android.com8a1c16f2008-12-17 15:59:43 +0000317 void* p = fPixelRef->pixels();
318 if (NULL != p) {
reed@google.com672588b2014-01-08 15:42:01 +0000319 p = (char*)p
reed@google.com303c4752014-01-09 20:00:14 +0000320 + fPixelRefOrigin.fY * fRowBytes
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000321 + fPixelRefOrigin.fX * fInfo.bytesPerPixel();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000322 }
323 fPixels = p;
reed@google.com5f62ed72014-01-15 19:59:45 +0000324 fColorTable = fPixelRef->colorTable();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000325 } else {
326 SkASSERT(0 == fPixelLockCount);
327 fPixels = NULL;
reed@google.com5f62ed72014-01-15 19:59:45 +0000328 fColorTable = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000329 }
330 }
331}
332
reed@google.com9230ea22013-12-09 22:01:03 +0000333static bool config_to_colorType(SkBitmap::Config config, SkColorType* ctOut) {
334 SkColorType ct;
335 switch (config) {
336 case SkBitmap::kA8_Config:
337 ct = kAlpha_8_SkColorType;
338 break;
339 case SkBitmap::kIndex8_Config:
340 ct = kIndex_8_SkColorType;
341 break;
342 case SkBitmap::kRGB_565_Config:
343 ct = kRGB_565_SkColorType;
344 break;
345 case SkBitmap::kARGB_4444_Config:
346 ct = kARGB_4444_SkColorType;
347 break;
348 case SkBitmap::kARGB_8888_Config:
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +0000349 ct = kN32_SkColorType;
reed@google.com9230ea22013-12-09 22:01:03 +0000350 break;
351 case SkBitmap::kNo_Config:
352 default:
353 return false;
354 }
355 if (ctOut) {
356 *ctOut = ct;
357 }
358 return true;
359}
360
reed@google.com672588b2014-01-08 15:42:01 +0000361SkPixelRef* SkBitmap::setPixelRef(SkPixelRef* pr, int dx, int dy) {
reed@google.comdcea5302014-01-03 13:43:01 +0000362#ifdef SK_DEBUG
reed@google.com672588b2014-01-08 15:42:01 +0000363 if (pr) {
reed@google.comdcea5302014-01-03 13:43:01 +0000364 SkImageInfo info;
365 if (this->asImageInfo(&info)) {
366 const SkImageInfo& prInfo = pr->info();
367 SkASSERT(info.fWidth <= prInfo.fWidth);
368 SkASSERT(info.fHeight <= prInfo.fHeight);
369 SkASSERT(info.fColorType == prInfo.fColorType);
370 switch (prInfo.fAlphaType) {
371 case kIgnore_SkAlphaType:
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000372 SkASSERT(fInfo.fAlphaType == kIgnore_SkAlphaType);
reed@google.comdcea5302014-01-03 13:43:01 +0000373 break;
374 case kOpaque_SkAlphaType:
375 case kPremul_SkAlphaType:
376 SkASSERT(info.fAlphaType == kOpaque_SkAlphaType ||
377 info.fAlphaType == kPremul_SkAlphaType);
378 break;
379 case kUnpremul_SkAlphaType:
380 SkASSERT(info.fAlphaType == kOpaque_SkAlphaType ||
381 info.fAlphaType == kUnpremul_SkAlphaType);
382 break;
383 }
384 }
385 }
386#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000387
reed@google.com672588b2014-01-08 15:42:01 +0000388 if (pr) {
389 const SkImageInfo& info = pr->info();
390 fPixelRefOrigin.set(SkPin32(dx, 0, info.fWidth),
391 SkPin32(dy, 0, info.fHeight));
392 } else {
393 // ignore dx,dy if there is no pixelref
394 fPixelRefOrigin.setZero();
395 }
396
397 if (fPixelRef != pr) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000398 if (fPixelRef != pr) {
399 this->freePixels();
400 SkASSERT(NULL == fPixelRef);
weita@google.comf9ab99a2009-05-03 18:23:30 +0000401
reed@google.com82065d62011-02-07 15:30:46 +0000402 SkSafeRef(pr);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000403 fPixelRef = pr;
404 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000405 this->updatePixelsFromRef();
406 }
407
408 SkDEBUGCODE(this->validate();)
409 return pr;
410}
411
412void SkBitmap::lockPixels() const {
djsollen@google.com7c6d2642013-08-06 12:19:38 +0000413 if (NULL != fPixelRef && 0 == sk_atomic_inc(&fPixelLockCount)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000414 fPixelRef->lockPixels();
415 this->updatePixelsFromRef();
416 }
417 SkDEBUGCODE(this->validate();)
418}
419
420void SkBitmap::unlockPixels() const {
421 SkASSERT(NULL == fPixelRef || fPixelLockCount > 0);
422
djsollen@google.com7c6d2642013-08-06 12:19:38 +0000423 if (NULL != fPixelRef && 1 == sk_atomic_dec(&fPixelLockCount)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000424 fPixelRef->unlockPixels();
425 this->updatePixelsFromRef();
426 }
427 SkDEBUGCODE(this->validate();)
428}
429
reed@google.com9c49bc32011-07-07 13:42:37 +0000430bool SkBitmap::lockPixelsAreWritable() const {
djsollen@google.comc84b8332012-07-27 13:41:44 +0000431 return (fPixelRef) ? fPixelRef->lockPixelsAreWritable() : false;
reed@google.com9c49bc32011-07-07 13:42:37 +0000432}
433
reed@android.com8a1c16f2008-12-17 15:59:43 +0000434void SkBitmap::setPixels(void* p, SkColorTable* ctable) {
reed@google.com8e1034e2012-07-30 13:16:35 +0000435 if (NULL == p) {
reed@google.com672588b2014-01-08 15:42:01 +0000436 this->setPixelRef(NULL);
reed@google.com8e1034e2012-07-30 13:16:35 +0000437 return;
438 }
439
reed@google.combf790232013-12-13 19:45:58 +0000440 SkImageInfo info;
441 if (!this->asImageInfo(&info)) {
reed@google.com672588b2014-01-08 15:42:01 +0000442 this->setPixelRef(NULL);
reed@google.combf790232013-12-13 19:45:58 +0000443 return;
444 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000445
reed@google.combf790232013-12-13 19:45:58 +0000446 SkPixelRef* pr = SkMallocPixelRef::NewDirect(info, p, fRowBytes, ctable);
447 if (NULL == pr) {
reed@google.com672588b2014-01-08 15:42:01 +0000448 this->setPixelRef(NULL);
reed@google.combf790232013-12-13 19:45:58 +0000449 return;
450 }
451
452 this->setPixelRef(pr)->unref();
453
djsollen@google.comc84b8332012-07-27 13:41:44 +0000454 // since we're already allocated, we lockPixels right away
455 this->lockPixels();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000456 SkDEBUGCODE(this->validate();)
457}
458
459bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) {
460 HeapAllocator stdalloc;
skia.committer@gmail.comd2ac07b2014-01-25 07:01:49 +0000461
reed@android.com8a1c16f2008-12-17 15:59:43 +0000462 if (NULL == allocator) {
463 allocator = &stdalloc;
464 }
465 return allocator->allocPixelRef(this, ctable);
466}
467
reed@google.com9ebcac52014-01-24 18:53:42 +0000468///////////////////////////////////////////////////////////////////////////////
469
reed@google.com9ebcac52014-01-24 18:53:42 +0000470bool SkBitmap::allocPixels(const SkImageInfo& info, SkPixelRefFactory* factory,
471 SkColorTable* ctable) {
472 if (kIndex_8_SkColorType == info.fColorType && NULL == ctable) {
473 return reset_return_false(this);
474 }
475 if (!this->setConfig(info)) {
476 return reset_return_false(this);
477 }
478
479 SkMallocPixelRef::PRFactory defaultFactory;
480 if (NULL == factory) {
481 factory = &defaultFactory;
482 }
skia.committer@gmail.comd2ac07b2014-01-25 07:01:49 +0000483
reed@google.com9ebcac52014-01-24 18:53:42 +0000484 SkPixelRef* pr = factory->create(info, ctable);
485 if (NULL == pr) {
486 return reset_return_false(this);
487 }
488 this->setPixelRef(pr)->unref();
489
490 // TODO: lockPixels could/should return bool or void*/NULL
491 this->lockPixels();
492 if (NULL == this->getPixels()) {
493 return reset_return_false(this);
494 }
495 return true;
496}
497
498bool SkBitmap::installPixels(const SkImageInfo& info, void* pixels, size_t rb,
499 void (*releaseProc)(void* addr, void* context),
500 void* context) {
reed@google.comc2d768c2014-02-05 21:02:35 +0000501 if (!this->setConfig(info, rb)) {
reed@google.com9ebcac52014-01-24 18:53:42 +0000502 this->reset();
503 return false;
504 }
505
506 SkPixelRef* pr = SkMallocPixelRef::NewWithProc(info, rb, NULL, pixels,
507 releaseProc, context);
508 if (!pr) {
509 this->reset();
510 return false;
511 }
512
513 this->setPixelRef(pr)->unref();
mike@reedtribe.org6e58cf32014-02-16 20:54:21 +0000514
515 // since we're already allocated, we lockPixels right away
516 this->lockPixels();
mike@reedtribe.org6e58cf32014-02-16 20:54:21 +0000517 SkDEBUGCODE(this->validate();)
reed@google.com9ebcac52014-01-24 18:53:42 +0000518 return true;
519}
520
commit-bot@chromium.orgdac52252014-02-17 21:21:46 +0000521bool SkBitmap::installMaskPixels(const SkMask& mask) {
522 if (SkMask::kA8_Format != mask.fFormat) {
523 this->reset();
524 return false;
525 }
526 return this->installPixels(SkImageInfo::MakeA8(mask.fBounds.width(),
527 mask.fBounds.height()),
528 mask.fImage, mask.fRowBytes);
529}
530
reed@google.comeb9a46c2014-01-25 16:46:20 +0000531bool SkBitmap::allocConfigPixels(Config config, int width, int height,
532 bool isOpaque) {
533 SkColorType ct;
534 if (!config_to_colorType(config, &ct)) {
535 return false;
536 }
skia.committer@gmail.com33c749a2014-01-26 07:01:45 +0000537
reed@google.comeb9a46c2014-01-25 16:46:20 +0000538 SkAlphaType at = isOpaque ? kOpaque_SkAlphaType : kPremul_SkAlphaType;
reed@google.comeb9a46c2014-01-25 16:46:20 +0000539 return this->allocPixels(SkImageInfo::Make(width, height, ct, at));
540}
541
542///////////////////////////////////////////////////////////////////////////////
543
reed@android.com8a1c16f2008-12-17 15:59:43 +0000544void SkBitmap::freePixels() {
545 // if we're gonna free the pixels, we certainly need to free the mipmap
546 this->freeMipMap();
547
reed@android.com8a1c16f2008-12-17 15:59:43 +0000548 if (NULL != fPixelRef) {
549 if (fPixelLockCount > 0) {
550 fPixelRef->unlockPixels();
551 }
552 fPixelRef->unref();
553 fPixelRef = NULL;
reed@google.com672588b2014-01-08 15:42:01 +0000554 fPixelRefOrigin.setZero();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000555 }
556 fPixelLockCount = 0;
557 fPixels = NULL;
reed@google.com5f62ed72014-01-15 19:59:45 +0000558 fColorTable = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000559}
560
561void SkBitmap::freeMipMap() {
reed@android.com149e2f62009-05-22 14:39:03 +0000562 if (fMipMap) {
563 fMipMap->unref();
564 fMipMap = NULL;
565 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000566}
567
568uint32_t SkBitmap::getGenerationID() const {
djsollen@google.comc84b8332012-07-27 13:41:44 +0000569 return (fPixelRef) ? fPixelRef->getGenerationID() : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000570}
571
572void SkBitmap::notifyPixelsChanged() const {
junov@chromium.orgb0521292011-12-15 20:14:06 +0000573 SkASSERT(!this->isImmutable());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000574 if (fPixelRef) {
575 fPixelRef->notifyPixelsChanged();
576 }
577}
578
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000579GrTexture* SkBitmap::getTexture() const {
reed@android.comce4e53a2010-09-09 16:01:26 +0000580 return fPixelRef ? fPixelRef->getTexture() : NULL;
581}
582
reed@android.com8a1c16f2008-12-17 15:59:43 +0000583///////////////////////////////////////////////////////////////////////////////
584
reed@android.com8a1c16f2008-12-17 15:59:43 +0000585/** We explicitly use the same allocator for our pixels that SkMask does,
586 so that we can freely assign memory allocated by one class to the other.
587 */
588bool SkBitmap::HeapAllocator::allocPixelRef(SkBitmap* dst,
589 SkColorTable* ctable) {
reed@google.combf790232013-12-13 19:45:58 +0000590 SkImageInfo info;
591 if (!dst->asImageInfo(&info)) {
592// SkDebugf("unsupported config for info %d\n", dst->config());
593 return false;
594 }
skia.committer@gmail.com96f5fa02013-12-16 07:01:40 +0000595
reed@google.combf790232013-12-13 19:45:58 +0000596 SkPixelRef* pr = SkMallocPixelRef::NewAllocate(info, dst->rowBytes(),
597 ctable);
598 if (NULL == pr) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000599 return false;
600 }
weita@google.comf9ab99a2009-05-03 18:23:30 +0000601
reed@google.com672588b2014-01-08 15:42:01 +0000602 dst->setPixelRef(pr)->unref();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000603 // since we're already allocated, we lockPixels right away
604 dst->lockPixels();
605 return true;
606}
607
608///////////////////////////////////////////////////////////////////////////////
609
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000610bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize,
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000611 size_t dstRowBytes, bool preserveDstPad) const {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000612
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000613 if (0 == dstRowBytes) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000614 dstRowBytes = fRowBytes;
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000615 }
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000616
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000617 if (dstRowBytes < fInfo.minRowBytes() ||
618 dst == NULL || (getPixels() == NULL && pixelRef() == NULL)) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000619 return false;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000620 }
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000621
bsalomon@google.comc6980972011-11-02 19:57:21 +0000622 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
reed@google.com44699382013-10-31 17:28:30 +0000623 size_t safeSize = this->getSafeSize();
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000624 if (safeSize > dstSize || safeSize == 0)
625 return false;
626 else {
627 SkAutoLockPixels lock(*this);
628 // This implementation will write bytes beyond the end of each row,
629 // excluding the last row, if the bitmap's stride is greater than
630 // strictly required by the current config.
631 memcpy(dst, getPixels(), safeSize);
632
633 return true;
634 }
635 } else {
636 // If destination has different stride than us, then copy line by line.
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000637 if (fInfo.getSafeSize(dstRowBytes) > dstSize) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000638 return false;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000639 } else {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000640 // Just copy what we need on each line.
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000641 size_t rowBytes = fInfo.minRowBytes();
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000642 SkAutoLockPixels lock(*this);
643 const uint8_t* srcP = reinterpret_cast<const uint8_t*>(getPixels());
644 uint8_t* dstP = reinterpret_cast<uint8_t*>(dst);
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000645 for (int row = 0; row < fInfo.fHeight;
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000646 row++, srcP += fRowBytes, dstP += dstRowBytes) {
647 memcpy(dstP, srcP, rowBytes);
648 }
649
650 return true;
651 }
652 }
653}
654
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000655///////////////////////////////////////////////////////////////////////////////
656
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000657bool SkBitmap::isImmutable() const {
junov@chromium.orgb0521292011-12-15 20:14:06 +0000658 return fPixelRef ? fPixelRef->isImmutable() :
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000659 fFlags & kImageIsImmutable_Flag;
junov@chromium.orgb0521292011-12-15 20:14:06 +0000660}
661
662void SkBitmap::setImmutable() {
663 if (fPixelRef) {
664 fPixelRef->setImmutable();
665 } else {
666 fFlags |= kImageIsImmutable_Flag;
667 }
668}
669
junov@google.com4ee7ae52011-06-30 17:30:49 +0000670bool SkBitmap::isVolatile() const {
671 return (fFlags & kImageIsVolatile_Flag) != 0;
672}
673
674void SkBitmap::setIsVolatile(bool isVolatile) {
675 if (isVolatile) {
676 fFlags |= kImageIsVolatile_Flag;
677 } else {
678 fFlags &= ~kImageIsVolatile_Flag;
679 }
680}
681
reed@android.com8a1c16f2008-12-17 15:59:43 +0000682void* SkBitmap::getAddr(int x, int y) const {
683 SkASSERT((unsigned)x < (unsigned)this->width());
684 SkASSERT((unsigned)y < (unsigned)this->height());
685
686 char* base = (char*)this->getPixels();
687 if (base) {
688 base += y * this->rowBytes();
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000689 switch (this->colorType()) {
690 case kRGBA_8888_SkColorType:
691 case kBGRA_8888_SkColorType:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000692 base += x << 2;
693 break;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000694 case kARGB_4444_SkColorType:
695 case kRGB_565_SkColorType:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000696 base += x << 1;
697 break;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000698 case kAlpha_8_SkColorType:
699 case kIndex_8_SkColorType:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000700 base += x;
701 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000702 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000703 SkDEBUGFAIL("Can't return addr for config");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000704 base = NULL;
705 break;
706 }
707 }
708 return base;
709}
710
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000711SkColor SkBitmap::getColor(int x, int y) const {
712 SkASSERT((unsigned)x < (unsigned)this->width());
713 SkASSERT((unsigned)y < (unsigned)this->height());
714
715 switch (this->config()) {
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000716 case SkBitmap::kA8_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000717 uint8_t* addr = this->getAddr8(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000718 return SkColorSetA(0, addr[0]);
719 }
720 case SkBitmap::kIndex8_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000721 SkPMColor c = this->getIndex8Color(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000722 return SkUnPreMultiply::PMColorToColor(c);
723 }
724 case SkBitmap::kRGB_565_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000725 uint16_t* addr = this->getAddr16(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000726 return SkPixel16ToColor(addr[0]);
727 }
728 case SkBitmap::kARGB_4444_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000729 uint16_t* addr = this->getAddr16(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000730 SkPMColor c = SkPixel4444ToPixel32(addr[0]);
731 return SkUnPreMultiply::PMColorToColor(c);
732 }
733 case SkBitmap::kARGB_8888_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000734 uint32_t* addr = this->getAddr32(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000735 return SkUnPreMultiply::PMColorToColor(addr[0]);
736 }
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000737 case kNo_Config:
rmistry@google.comd6bab022013-12-02 13:50:38 +0000738 default:
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000739 SkASSERT(false);
740 return 0;
741 }
742 SkASSERT(false); // Not reached.
743 return 0;
744}
745
reed@google.com2a7579d2012-11-07 18:30:18 +0000746bool SkBitmap::ComputeIsOpaque(const SkBitmap& bm) {
747 SkAutoLockPixels alp(bm);
748 if (!bm.getPixels()) {
749 return false;
750 }
751
752 const int height = bm.height();
753 const int width = bm.width();
754
755 switch (bm.config()) {
reed@google.com2a7579d2012-11-07 18:30:18 +0000756 case SkBitmap::kA8_Config: {
757 unsigned a = 0xFF;
758 for (int y = 0; y < height; ++y) {
759 const uint8_t* row = bm.getAddr8(0, y);
760 for (int x = 0; x < width; ++x) {
761 a &= row[x];
762 }
763 if (0xFF != a) {
764 return false;
765 }
766 }
767 return true;
768 } break;
reed@google.com2a7579d2012-11-07 18:30:18 +0000769 case SkBitmap::kIndex8_Config: {
770 SkAutoLockColors alc(bm);
771 const SkPMColor* table = alc.colors();
772 if (!table) {
773 return false;
774 }
reed@google.com140d7282013-01-07 20:25:04 +0000775 SkPMColor c = (SkPMColor)~0;
reed@google.com2a7579d2012-11-07 18:30:18 +0000776 for (int i = bm.getColorTable()->count() - 1; i >= 0; --i) {
777 c &= table[i];
778 }
779 return 0xFF == SkGetPackedA32(c);
780 } break;
781 case SkBitmap::kRGB_565_Config:
782 return true;
783 break;
784 case SkBitmap::kARGB_4444_Config: {
785 unsigned c = 0xFFFF;
786 for (int y = 0; y < height; ++y) {
787 const SkPMColor16* row = bm.getAddr16(0, y);
788 for (int x = 0; x < width; ++x) {
789 c &= row[x];
790 }
791 if (0xF != SkGetPackedA4444(c)) {
792 return false;
793 }
794 }
795 return true;
796 } break;
797 case SkBitmap::kARGB_8888_Config: {
reed@google.com140d7282013-01-07 20:25:04 +0000798 SkPMColor c = (SkPMColor)~0;
reed@google.com2a7579d2012-11-07 18:30:18 +0000799 for (int y = 0; y < height; ++y) {
800 const SkPMColor* row = bm.getAddr32(0, y);
801 for (int x = 0; x < width; ++x) {
802 c &= row[x];
803 }
804 if (0xFF != SkGetPackedA32(c)) {
805 return false;
806 }
807 }
808 return true;
809 }
810 default:
811 break;
812 }
813 return false;
814}
815
816
reed@android.com8a1c16f2008-12-17 15:59:43 +0000817///////////////////////////////////////////////////////////////////////////////
818///////////////////////////////////////////////////////////////////////////////
819
reed@google.com45f746f2013-06-21 19:51:31 +0000820static uint16_t pack_8888_to_4444(unsigned a, unsigned r, unsigned g, unsigned b) {
821 unsigned pixel = (SkA32To4444(a) << SK_A4444_SHIFT) |
822 (SkR32To4444(r) << SK_R4444_SHIFT) |
823 (SkG32To4444(g) << SK_G4444_SHIFT) |
824 (SkB32To4444(b) << SK_B4444_SHIFT);
825 return SkToU16(pixel);
826}
827
reed@google.com60d32352013-06-28 19:40:50 +0000828void SkBitmap::internalErase(const SkIRect& area,
829 U8CPU a, U8CPU r, U8CPU g, U8CPU b) const {
830#ifdef SK_DEBUG
reed@android.com8a1c16f2008-12-17 15:59:43 +0000831 SkDEBUGCODE(this->validate();)
reed@google.com60d32352013-06-28 19:40:50 +0000832 SkASSERT(!area.isEmpty());
833 {
reed@google.com92833f92013-06-28 19:47:43 +0000834 SkIRect total = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000835 SkASSERT(total.contains(area));
836 }
837#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000838
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000839 switch (fInfo.colorType()) {
840 case kUnknown_SkColorType:
841 case kIndex_8_SkColorType:
commit-bot@chromium.org7669a772014-03-27 15:30:35 +0000842 return; // can't erase. Should we bzero so the memory is not uninitialized?
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000843 default:
844 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000845 }
846
847 SkAutoLockPixels alp(*this);
848 // perform this check after the lock call
849 if (!this->readyToDraw()) {
850 return;
851 }
852
reed@google.com60d32352013-06-28 19:40:50 +0000853 int height = area.height();
854 const int width = area.width();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000855 const int rowBytes = fRowBytes;
856
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000857 switch (this->colorType()) {
858 case kAlpha_8_SkColorType: {
reed@google.com60d32352013-06-28 19:40:50 +0000859 uint8_t* p = this->getAddr8(area.fLeft, area.fTop);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000860 while (--height >= 0) {
861 memset(p, a, width);
862 p += rowBytes;
863 }
864 break;
865 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000866 case kARGB_4444_SkColorType:
867 case kRGB_565_SkColorType: {
reed@google.com60d32352013-06-28 19:40:50 +0000868 uint16_t* p = this->getAddr16(area.fLeft, area.fTop);;
reed@google.com45f746f2013-06-21 19:51:31 +0000869 uint16_t v;
skia.committer@gmail.com020b25b2013-06-22 07:00:58 +0000870
commit-bot@chromium.org7669a772014-03-27 15:30:35 +0000871 // make rgb premultiplied
872 if (255 != a) {
873 r = SkAlphaMul(r, a);
874 g = SkAlphaMul(g, a);
875 b = SkAlphaMul(b, a);
876 }
877
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000878 if (kARGB_4444_SkColorType == this->colorType()) {
reed@google.com45f746f2013-06-21 19:51:31 +0000879 v = pack_8888_to_4444(a, r, g, b);
880 } else {
881 v = SkPackRGB16(r >> (8 - SK_R16_BITS),
882 g >> (8 - SK_G16_BITS),
883 b >> (8 - SK_B16_BITS));
884 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000885 while (--height >= 0) {
886 sk_memset16(p, v, width);
887 p = (uint16_t*)((char*)p + rowBytes);
888 }
889 break;
890 }
commit-bot@chromium.org7669a772014-03-27 15:30:35 +0000891 case kBGRA_8888_SkColorType:
892 case kRGBA_8888_SkColorType: {
reed@google.com60d32352013-06-28 19:40:50 +0000893 uint32_t* p = this->getAddr32(area.fLeft, area.fTop);
commit-bot@chromium.org7669a772014-03-27 15:30:35 +0000894
895 if (255 != a && kPremul_SkAlphaType == this->alphaType()) {
896 r = SkAlphaMul(r, a);
897 g = SkAlphaMul(g, a);
898 b = SkAlphaMul(b, a);
899 }
900 uint32_t v = kRGBA_8888_SkColorType == this->colorType() ?
901 SkPackARGB_as_RGBA(a, r, g, b) : SkPackARGB_as_BGRA(a, r, g, b);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000902
903 while (--height >= 0) {
904 sk_memset32(p, v, width);
905 p = (uint32_t*)((char*)p + rowBytes);
906 }
907 break;
908 }
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +0000909 default:
910 return; // no change, so don't call notifyPixelsChanged()
reed@android.com8a1c16f2008-12-17 15:59:43 +0000911 }
weita@google.comf9ab99a2009-05-03 18:23:30 +0000912
reed@android.com8a1c16f2008-12-17 15:59:43 +0000913 this->notifyPixelsChanged();
914}
915
reed@google.com60d32352013-06-28 19:40:50 +0000916void SkBitmap::eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) const {
reed@google.com92833f92013-06-28 19:47:43 +0000917 SkIRect area = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000918 if (!area.isEmpty()) {
919 this->internalErase(area, a, r, g, b);
920 }
921}
922
923void SkBitmap::eraseArea(const SkIRect& rect, SkColor c) const {
reed@google.com92833f92013-06-28 19:47:43 +0000924 SkIRect area = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000925 if (area.intersect(rect)) {
926 this->internalErase(area, SkColorGetA(c), SkColorGetR(c),
927 SkColorGetG(c), SkColorGetB(c));
928 }
929}
930
reed@android.com8a1c16f2008-12-17 15:59:43 +0000931//////////////////////////////////////////////////////////////////////////////////////
932//////////////////////////////////////////////////////////////////////////////////////
933
reed@android.com8a1c16f2008-12-17 15:59:43 +0000934bool SkBitmap::extractSubset(SkBitmap* result, const SkIRect& subset) const {
935 SkDEBUGCODE(this->validate();)
936
djsollen@google.comc84b8332012-07-27 13:41:44 +0000937 if (NULL == result || NULL == fPixelRef) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000938 return false; // no src pixels
939 }
940
941 SkIRect srcRect, r;
942 srcRect.set(0, 0, this->width(), this->height());
943 if (!r.intersect(srcRect, subset)) {
944 return false; // r is empty (i.e. no intersection)
945 }
946
scroggo@google.coma2a31922012-12-07 19:14:45 +0000947 if (fPixelRef->getTexture() != NULL) {
948 // Do a deep copy
reed@google.comdcacd5f2014-04-22 18:22:30 +0000949 SkPixelRef* pixelRef = fPixelRef->deepCopy(&subset);
scroggo@google.coma2a31922012-12-07 19:14:45 +0000950 if (pixelRef != NULL) {
951 SkBitmap dst;
reed@google.com383a6972013-10-21 14:00:07 +0000952 dst.setConfig(this->config(), subset.width(), subset.height(), 0,
953 this->alphaType());
scroggo@google.coma2a31922012-12-07 19:14:45 +0000954 dst.setIsVolatile(this->isVolatile());
scroggo@google.coma2a31922012-12-07 19:14:45 +0000955 dst.setPixelRef(pixelRef)->unref();
956 SkDEBUGCODE(dst.validate());
957 result->swap(dst);
958 return true;
959 }
960 }
961
scroggo@google.coma2a31922012-12-07 19:14:45 +0000962 // If the upper left of the rectangle was outside the bounds of this SkBitmap, we should have
963 // exited above.
964 SkASSERT(static_cast<unsigned>(r.fLeft) < static_cast<unsigned>(this->width()));
965 SkASSERT(static_cast<unsigned>(r.fTop) < static_cast<unsigned>(this->height()));
966
reed@android.com8a1c16f2008-12-17 15:59:43 +0000967 SkBitmap dst;
reed@google.com383a6972013-10-21 14:00:07 +0000968 dst.setConfig(this->config(), r.width(), r.height(), this->rowBytes(),
969 this->alphaType());
skyostil@google.com0eb75762012-01-16 10:45:53 +0000970 dst.setIsVolatile(this->isVolatile());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000971
972 if (fPixelRef) {
reed@google.com672588b2014-01-08 15:42:01 +0000973 SkIPoint origin = fPixelRefOrigin;
974 origin.fX += r.fLeft;
975 origin.fY += r.fTop;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000976 // share the pixelref with a custom offset
reed@google.com672588b2014-01-08 15:42:01 +0000977 dst.setPixelRef(fPixelRef, origin);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000978 }
979 SkDEBUGCODE(dst.validate();)
980
981 // we know we're good, so commit to result
982 result->swap(dst);
983 return true;
984}
985
986///////////////////////////////////////////////////////////////////////////////
987
988#include "SkCanvas.h"
989#include "SkPaint.h"
990
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000991bool SkBitmap::canCopyTo(SkColorType dstColorType) const {
992 if (this->colorType() == kUnknown_SkColorType) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000993 return false;
994 }
995
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +0000996 bool sameConfigs = (this->colorType() == dstColorType);
997 switch (dstColorType) {
998 case kAlpha_8_SkColorType:
999 case kRGB_565_SkColorType:
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +00001000 case kN32_SkColorType:
reed@android.com8a1c16f2008-12-17 15:59:43 +00001001 break;
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001002 case kIndex_8_SkColorType:
weita@google.comf9ab99a2009-05-03 18:23:30 +00001003 if (!sameConfigs) {
1004 return false;
1005 }
1006 break;
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001007 case kARGB_4444_SkColorType:
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +00001008 return sameConfigs || kN32_SkColorType == this->colorType();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001009 default:
1010 return false;
1011 }
reed@android.comfbaa88d2009-05-06 17:44:34 +00001012 return true;
1013}
1014
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001015bool SkBitmap::copyTo(SkBitmap* dst, SkColorType dstColorType,
1016 Allocator* alloc) const {
1017 if (!this->canCopyTo(dstColorType)) {
reed@android.comfbaa88d2009-05-06 17:44:34 +00001018 return false;
1019 }
1020
reed@google.com50dfa012011-04-01 19:05:36 +00001021 // if we have a texture, first get those pixels
1022 SkBitmap tmpSrc;
1023 const SkBitmap* src = this;
1024
scroggo@google.coma2a31922012-12-07 19:14:45 +00001025 if (fPixelRef) {
1026 SkIRect subset;
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001027 subset.setXYWH(fPixelRefOrigin.fX, fPixelRefOrigin.fY,
1028 fInfo.width(), fInfo.height());
reed@google.com672588b2014-01-08 15:42:01 +00001029 if (fPixelRef->readPixels(&tmpSrc, &subset)) {
1030 SkASSERT(tmpSrc.width() == this->width());
1031 SkASSERT(tmpSrc.height() == this->height());
reed@google.com50dfa012011-04-01 19:05:36 +00001032
reed@google.com672588b2014-01-08 15:42:01 +00001033 // did we get lucky and we can just return tmpSrc?
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001034 if (tmpSrc.colorType() == dstColorType && NULL == alloc) {
reed@google.com672588b2014-01-08 15:42:01 +00001035 dst->swap(tmpSrc);
scroggo@google.com5ccae2c2014-01-15 16:56:52 +00001036 // If the result is an exact copy, clone the gen ID.
1037 if (dst->pixelRef() && dst->pixelRef()->info() == fPixelRef->info()) {
reed@google.com672588b2014-01-08 15:42:01 +00001038 dst->pixelRef()->cloneGenID(*fPixelRef);
scroggo@google.coma2a31922012-12-07 19:14:45 +00001039 }
reed@google.com672588b2014-01-08 15:42:01 +00001040 return true;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001041 }
reed@google.com672588b2014-01-08 15:42:01 +00001042
1043 // fall through to the raster case
1044 src = &tmpSrc;
reed@google.com50dfa012011-04-01 19:05:36 +00001045 }
reed@android.comfbaa88d2009-05-06 17:44:34 +00001046 }
reed@android.com311c82d2009-05-05 23:13:23 +00001047
reed@google.com50dfa012011-04-01 19:05:36 +00001048 // we lock this now, since we may need its colortable
1049 SkAutoLockPixels srclock(*src);
1050 if (!src->readyToDraw()) {
1051 return false;
1052 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001053
scroggo@google.com5ccae2c2014-01-15 16:56:52 +00001054 // The only way to be readyToDraw is if fPixelRef is non NULL.
1055 SkASSERT(fPixelRef != NULL);
1056
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001057 SkImageInfo dstInfo = src->info();
1058 dstInfo.fColorType = dstColorType;
1059
reed@google.com50dfa012011-04-01 19:05:36 +00001060 SkBitmap tmpDst;
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001061 if (!tmpDst.setConfig(dstInfo)) {
1062 return false;
1063 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001064
weita@google.comf9ab99a2009-05-03 18:23:30 +00001065 // allocate colortable if srcConfig == kIndex8_Config
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001066 SkAutoTUnref<SkColorTable> ctable;
1067 if (dstColorType == kIndex_8_SkColorType) {
1068 // TODO: can we just ref() the src colortable? Is it reentrant-safe?
1069 ctable.reset(SkNEW_ARGS(SkColorTable, (*src->getColorTable())));
1070 }
reed@google.com50dfa012011-04-01 19:05:36 +00001071 if (!tmpDst.allocPixels(alloc, ctable)) {
weita@google.comf9ab99a2009-05-03 18:23:30 +00001072 return false;
1073 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001074
reed@google.com50dfa012011-04-01 19:05:36 +00001075 if (!tmpDst.readyToDraw()) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001076 // allocator/lock failed
1077 return false;
1078 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001079
scroggo@google.com5ccae2c2014-01-15 16:56:52 +00001080 // pixelRef must be non NULL or tmpDst.readyToDraw() would have
1081 // returned false.
1082 SkASSERT(tmpDst.pixelRef() != NULL);
1083
reed@android.comfbaa88d2009-05-06 17:44:34 +00001084 /* do memcpy for the same configs cases, else use drawing
weita@google.comf9ab99a2009-05-03 18:23:30 +00001085 */
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001086 if (src->colorType() == dstColorType) {
reed@google.com50dfa012011-04-01 19:05:36 +00001087 if (tmpDst.getSize() == src->getSize()) {
1088 memcpy(tmpDst.getPixels(), src->getPixels(), src->getSafeSize());
scroggo@google.comd5764e82012-08-22 15:00:05 +00001089 SkPixelRef* pixelRef = tmpDst.pixelRef();
scroggo@google.com5ccae2c2014-01-15 16:56:52 +00001090
1091 // In order to reach this point, we know that the width, config and
1092 // rowbytes of the SkPixelRefs are the same, but it is possible for
1093 // the heights to differ, if this SkBitmap's height is a subset of
1094 // fPixelRef. Only if the SkPixelRefs' heights match are we
1095 // guaranteed that this is an exact copy, meaning we should clone
1096 // the genID.
1097 if (pixelRef->info().fHeight == fPixelRef->info().fHeight) {
1098 // TODO: what to do if the two infos match, BUT
1099 // fPixelRef is premul and pixelRef is opaque?
1100 // skipping assert for now
1101 // https://code.google.com/p/skia/issues/detail?id=2012
1102// SkASSERT(pixelRef->info() == fPixelRef->info());
1103 SkASSERT(pixelRef->info().fWidth == fPixelRef->info().fWidth);
1104 SkASSERT(pixelRef->info().fColorType == fPixelRef->info().fColorType);
commit-bot@chromium.org50a30432013-10-24 17:44:27 +00001105 pixelRef->cloneGenID(*fPixelRef);
scroggo@google.comd5764e82012-08-22 15:00:05 +00001106 }
reed@android.com311c82d2009-05-05 23:13:23 +00001107 } else {
reed@google.com50dfa012011-04-01 19:05:36 +00001108 const char* srcP = reinterpret_cast<const char*>(src->getPixels());
1109 char* dstP = reinterpret_cast<char*>(tmpDst.getPixels());
reed@android.com311c82d2009-05-05 23:13:23 +00001110 // to be sure we don't read too much, only copy our logical pixels
reed@google.com50dfa012011-04-01 19:05:36 +00001111 size_t bytesToCopy = tmpDst.width() * tmpDst.bytesPerPixel();
1112 for (int y = 0; y < tmpDst.height(); y++) {
reed@android.com311c82d2009-05-05 23:13:23 +00001113 memcpy(dstP, srcP, bytesToCopy);
reed@google.com50dfa012011-04-01 19:05:36 +00001114 srcP += src->rowBytes();
1115 dstP += tmpDst.rowBytes();
reed@android.com311c82d2009-05-05 23:13:23 +00001116 }
1117 }
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001118 } else if (kARGB_4444_SkColorType == dstColorType
commit-bot@chromium.org28fcae22014-04-11 17:15:40 +00001119 && kN32_SkColorType == src->colorType()) {
scroggo@google.com8dc8bc52013-08-07 19:16:05 +00001120 SkASSERT(src->height() == tmpDst.height());
1121 SkASSERT(src->width() == tmpDst.width());
1122 for (int y = 0; y < src->height(); ++y) {
1123 SkPMColor16* SK_RESTRICT dstRow = (SkPMColor16*) tmpDst.getAddr16(0, y);
1124 SkPMColor* SK_RESTRICT srcRow = (SkPMColor*) src->getAddr32(0, y);
1125 DITHER_4444_SCAN(y);
1126 for (int x = 0; x < src->width(); ++x) {
1127 dstRow[x] = SkDitherARGB32To4444(srcRow[x],
1128 DITHER_VALUE(x));
1129 }
1130 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001131 } else {
robertphillips@google.com0197b322013-10-10 15:48:16 +00001132 // Always clear the dest in case one of the blitters accesses it
1133 // TODO: switch the allocation of tmpDst to call sk_calloc_throw
1134 tmpDst.eraseColor(SK_ColorTRANSPARENT);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001135
reed@google.com50dfa012011-04-01 19:05:36 +00001136 SkCanvas canvas(tmpDst);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001137 SkPaint paint;
1138
1139 paint.setDither(true);
reed@google.com50dfa012011-04-01 19:05:36 +00001140 canvas.drawBitmap(*src, 0, 0, &paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001141 }
1142
reed@google.com50dfa012011-04-01 19:05:36 +00001143 dst->swap(tmpDst);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001144 return true;
1145}
1146
commit-bot@chromium.orgfab349c2014-03-05 02:34:58 +00001147bool SkBitmap::deepCopyTo(SkBitmap* dst) const {
reed@google.comdcacd5f2014-04-22 18:22:30 +00001148 const SkColorType dstCT = this->colorType();
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001149
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001150 if (!this->canCopyTo(dstCT)) {
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001151 return false;
1152 }
1153
1154 // If we have a PixelRef, and it supports deep copy, use it.
1155 // Currently supported only by texture-backed bitmaps.
1156 if (fPixelRef) {
reed@google.comdcacd5f2014-04-22 18:22:30 +00001157 SkPixelRef* pixelRef = fPixelRef->deepCopy();
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001158 if (pixelRef) {
reed@google.comdcacd5f2014-04-22 18:22:30 +00001159 // Since there is no subset to pass to deepCopy, and deepCopy
1160 // succeeded, the new pixel ref must be identical.
1161 SkASSERT(fPixelRef->info() == pixelRef->info());
1162 pixelRef->cloneGenID(*fPixelRef);
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001163
1164 SkImageInfo info = fInfo;
reed@google.comdcacd5f2014-04-22 18:22:30 +00001165 if (!dst->setConfig(info, fRowBytes)) {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001166 return false;
1167 }
reed@google.com672588b2014-01-08 15:42:01 +00001168 dst->setPixelRef(pixelRef, fPixelRefOrigin)->unref();
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001169 return true;
1170 }
1171 }
1172
1173 if (this->getTexture()) {
1174 return false;
1175 } else {
commit-bot@chromium.org8a2ad3c2014-02-23 03:59:35 +00001176 return this->copyTo(dst, dstCT, NULL);
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001177 }
1178}
1179
reed@android.com8a1c16f2008-12-17 15:59:43 +00001180///////////////////////////////////////////////////////////////////////////////
1181///////////////////////////////////////////////////////////////////////////////
1182
1183static void downsampleby2_proc32(SkBitmap* dst, int x, int y,
1184 const SkBitmap& src) {
1185 x <<= 1;
1186 y <<= 1;
1187 const SkPMColor* p = src.getAddr32(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001188 const SkPMColor* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001189 SkPMColor c, ag, rb;
1190
1191 c = *p; ag = (c >> 8) & 0xFF00FF; rb = c & 0xFF00FF;
1192 if (x < src.width() - 1) {
1193 p += 1;
1194 }
1195 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1196
reed@android.com829c83c2009-06-08 12:05:31 +00001197 p = baseP;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001198 if (y < src.height() - 1) {
reed@android.com829c83c2009-06-08 12:05:31 +00001199 p += src.rowBytes() >> 2;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001200 }
1201 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1202 if (x < src.width() - 1) {
1203 p += 1;
1204 }
1205 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1206
1207 *dst->getAddr32(x >> 1, y >> 1) =
1208 ((rb >> 2) & 0xFF00FF) | ((ag << 6) & 0xFF00FF00);
1209}
1210
1211static inline uint32_t expand16(U16CPU c) {
1212 return (c & ~SK_G16_MASK_IN_PLACE) | ((c & SK_G16_MASK_IN_PLACE) << 16);
1213}
1214
1215// returns dirt in the top 16bits, but we don't care, since we only
1216// store the low 16bits.
1217static inline U16CPU pack16(uint32_t c) {
1218 return (c & ~SK_G16_MASK_IN_PLACE) | ((c >> 16) & SK_G16_MASK_IN_PLACE);
1219}
1220
1221static void downsampleby2_proc16(SkBitmap* dst, int x, int y,
1222 const SkBitmap& src) {
1223 x <<= 1;
1224 y <<= 1;
1225 const uint16_t* p = src.getAddr16(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001226 const uint16_t* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001227 SkPMColor c;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001228
reed@android.com8a1c16f2008-12-17 15:59:43 +00001229 c = expand16(*p);
reed@android.com829c83c2009-06-08 12:05:31 +00001230 if (x < src.width() - 1) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001231 p += 1;
1232 }
1233 c += expand16(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001234
reed@android.com829c83c2009-06-08 12:05:31 +00001235 p = baseP;
1236 if (y < src.height() - 1) {
1237 p += src.rowBytes() >> 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001238 }
1239 c += expand16(*p);
reed@android.com829c83c2009-06-08 12:05:31 +00001240 if (x < src.width() - 1) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001241 p += 1;
1242 }
1243 c += expand16(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001244
reed@android.com8a1c16f2008-12-17 15:59:43 +00001245 *dst->getAddr16(x >> 1, y >> 1) = (uint16_t)pack16(c >> 2);
1246}
1247
1248static uint32_t expand4444(U16CPU c) {
1249 return (c & 0xF0F) | ((c & ~0xF0F) << 12);
1250}
1251
1252static U16CPU collaps4444(uint32_t c) {
1253 return (c & 0xF0F) | ((c >> 12) & ~0xF0F);
1254}
1255
1256static void downsampleby2_proc4444(SkBitmap* dst, int x, int y,
1257 const SkBitmap& src) {
1258 x <<= 1;
1259 y <<= 1;
1260 const uint16_t* p = src.getAddr16(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001261 const uint16_t* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001262 uint32_t c;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001263
reed@android.com8a1c16f2008-12-17 15:59:43 +00001264 c = expand4444(*p);
1265 if (x < src.width() - 1) {
1266 p += 1;
1267 }
1268 c += expand4444(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001269
reed@android.com829c83c2009-06-08 12:05:31 +00001270 p = baseP;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001271 if (y < src.height() - 1) {
reed@android.com829c83c2009-06-08 12:05:31 +00001272 p += src.rowBytes() >> 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001273 }
1274 c += expand4444(*p);
1275 if (x < src.width() - 1) {
1276 p += 1;
1277 }
1278 c += expand4444(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001279
reed@android.com8a1c16f2008-12-17 15:59:43 +00001280 *dst->getAddr16(x >> 1, y >> 1) = (uint16_t)collaps4444(c >> 2);
1281}
1282
1283void SkBitmap::buildMipMap(bool forceRebuild) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001284 if (forceRebuild)
1285 this->freeMipMap();
1286 else if (fMipMap)
1287 return; // we're already built
1288
1289 SkASSERT(NULL == fMipMap);
1290
1291 void (*proc)(SkBitmap* dst, int x, int y, const SkBitmap& src);
1292
reed@google.com44699382013-10-31 17:28:30 +00001293 const SkBitmap::Config config = this->config();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001294
1295 switch (config) {
1296 case kARGB_8888_Config:
1297 proc = downsampleby2_proc32;
1298 break;
1299 case kRGB_565_Config:
1300 proc = downsampleby2_proc16;
1301 break;
1302 case kARGB_4444_Config:
1303 proc = downsampleby2_proc4444;
1304 break;
1305 case kIndex8_Config:
1306 case kA8_Config:
1307 default:
1308 return; // don't build mipmaps for these configs
1309 }
reed@android.com89bb83a2009-05-29 21:30:42 +00001310
reed@android.com149e2f62009-05-22 14:39:03 +00001311 SkAutoLockPixels alp(*this);
1312 if (!this->readyToDraw()) {
1313 return;
1314 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001315
1316 // whip through our loop to compute the exact size needed
1317 size_t size = 0;
1318 int maxLevels = 0;
1319 {
reed@android.com149e2f62009-05-22 14:39:03 +00001320 int width = this->width();
1321 int height = this->height();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001322 for (;;) {
1323 width >>= 1;
1324 height >>= 1;
1325 if (0 == width || 0 == height) {
1326 break;
1327 }
1328 size += ComputeRowBytes(config, width) * height;
1329 maxLevels += 1;
1330 }
1331 }
reed@android.com89bb83a2009-05-29 21:30:42 +00001332
reed@android.com149e2f62009-05-22 14:39:03 +00001333 // nothing to build
reed@android.com8a1c16f2008-12-17 15:59:43 +00001334 if (0 == maxLevels) {
1335 return;
1336 }
1337
reed@android.com149e2f62009-05-22 14:39:03 +00001338 SkBitmap srcBM(*this);
1339 srcBM.lockPixels();
1340 if (!srcBM.readyToDraw()) {
1341 return;
1342 }
1343
1344 MipMap* mm = MipMap::Alloc(maxLevels, size);
1345 if (NULL == mm) {
1346 return;
1347 }
1348
reed@android.com8a1c16f2008-12-17 15:59:43 +00001349 MipLevel* level = mm->levels();
1350 uint8_t* addr = (uint8_t*)mm->pixels();
reed@android.com149e2f62009-05-22 14:39:03 +00001351 int width = this->width();
1352 int height = this->height();
scroggo@google.come5f48242013-02-25 21:47:41 +00001353 uint32_t rowBytes;
reed@android.com149e2f62009-05-22 14:39:03 +00001354 SkBitmap dstBM;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001355
1356 for (int i = 0; i < maxLevels; i++) {
1357 width >>= 1;
1358 height >>= 1;
scroggo@google.come5f48242013-02-25 21:47:41 +00001359 rowBytes = SkToU32(ComputeRowBytes(config, width));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001360
1361 level[i].fPixels = addr;
reed@android.comf459a492009-03-27 12:33:50 +00001362 level[i].fWidth = width;
1363 level[i].fHeight = height;
reed@android.com49f0ff22009-03-19 21:52:42 +00001364 level[i].fRowBytes = rowBytes;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001365
1366 dstBM.setConfig(config, width, height, rowBytes);
1367 dstBM.setPixels(addr);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001368
bungeman@google.com7cf0e9e2012-07-25 16:09:10 +00001369 srcBM.lockPixels();
reed@android.com149e2f62009-05-22 14:39:03 +00001370 for (int y = 0; y < height; y++) {
1371 for (int x = 0; x < width; x++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001372 proc(&dstBM, x, y, srcBM);
1373 }
1374 }
bungeman@google.com7cf0e9e2012-07-25 16:09:10 +00001375 srcBM.unlockPixels();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001376
1377 srcBM = dstBM;
1378 addr += height * rowBytes;
1379 }
1380 SkASSERT(addr == (uint8_t*)mm->pixels() + size);
1381 fMipMap = mm;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001382}
1383
1384bool SkBitmap::hasMipMap() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001385 return fMipMap != NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001386}
1387
1388int SkBitmap::extractMipLevel(SkBitmap* dst, SkFixed sx, SkFixed sy) {
reed@android.com83f7bc32009-07-17 02:42:41 +00001389 if (NULL == fMipMap) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001390 return 0;
reed@android.com83f7bc32009-07-17 02:42:41 +00001391 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001392
reed@android.com8a1c16f2008-12-17 15:59:43 +00001393 int level = ComputeMipLevel(sx, sy) >> 16;
1394 SkASSERT(level >= 0);
1395 if (level <= 0) {
1396 return 0;
1397 }
1398
1399 if (level >= fMipMap->fLevelCount) {
1400 level = fMipMap->fLevelCount - 1;
1401 }
1402 if (dst) {
1403 const MipLevel& mip = fMipMap->levels()[level - 1];
1404 dst->setConfig((SkBitmap::Config)this->config(),
1405 mip.fWidth, mip.fHeight, mip.fRowBytes);
1406 dst->setPixels(mip.fPixels);
1407 }
1408 return level;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001409}
1410
1411SkFixed SkBitmap::ComputeMipLevel(SkFixed sx, SkFixed sy) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001412 sx = SkAbs32(sx);
1413 sy = SkAbs32(sy);
1414 if (sx < sy) {
1415 sx = sy;
1416 }
1417 if (sx < SK_Fixed1) {
1418 return 0;
1419 }
1420 int clz = SkCLZ(sx);
1421 SkASSERT(clz >= 1 && clz <= 15);
1422 return SkIntToFixed(15 - clz) + ((unsigned)(sx << (clz + 1)) >> 16);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001423}
1424
1425///////////////////////////////////////////////////////////////////////////////
1426
tomhudson@google.coma87cd2a2011-06-15 16:50:27 +00001427static bool GetBitmapAlpha(const SkBitmap& src, uint8_t* SK_RESTRICT alpha,
reed@android.com8a1c16f2008-12-17 15:59:43 +00001428 int alphaRowBytes) {
1429 SkASSERT(alpha != NULL);
1430 SkASSERT(alphaRowBytes >= src.width());
1431
reed@google.com44699382013-10-31 17:28:30 +00001432 SkBitmap::Config config = src.config();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001433 int w = src.width();
1434 int h = src.height();
scroggo@google.come5f48242013-02-25 21:47:41 +00001435 size_t rb = src.rowBytes();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001436
reed@android.com1cdcb512009-08-24 19:11:00 +00001437 SkAutoLockPixels alp(src);
1438 if (!src.readyToDraw()) {
1439 // zero out the alpha buffer and return
1440 while (--h >= 0) {
1441 memset(alpha, 0, w);
1442 alpha += alphaRowBytes;
1443 }
1444 return false;
1445 }
reed@google.com82065d62011-02-07 15:30:46 +00001446
reed@android.com8a1c16f2008-12-17 15:59:43 +00001447 if (SkBitmap::kA8_Config == config && !src.isOpaque()) {
1448 const uint8_t* s = src.getAddr8(0, 0);
1449 while (--h >= 0) {
1450 memcpy(alpha, s, w);
1451 s += rb;
1452 alpha += alphaRowBytes;
1453 }
1454 } else if (SkBitmap::kARGB_8888_Config == config && !src.isOpaque()) {
1455 const SkPMColor* SK_RESTRICT s = src.getAddr32(0, 0);
1456 while (--h >= 0) {
1457 for (int x = 0; x < w; x++) {
1458 alpha[x] = SkGetPackedA32(s[x]);
1459 }
1460 s = (const SkPMColor*)((const char*)s + rb);
1461 alpha += alphaRowBytes;
1462 }
1463 } else if (SkBitmap::kARGB_4444_Config == config && !src.isOpaque()) {
1464 const SkPMColor16* SK_RESTRICT s = src.getAddr16(0, 0);
1465 while (--h >= 0) {
1466 for (int x = 0; x < w; x++) {
1467 alpha[x] = SkPacked4444ToA32(s[x]);
1468 }
1469 s = (const SkPMColor16*)((const char*)s + rb);
1470 alpha += alphaRowBytes;
1471 }
1472 } else if (SkBitmap::kIndex8_Config == config && !src.isOpaque()) {
1473 SkColorTable* ct = src.getColorTable();
1474 if (ct) {
1475 const SkPMColor* SK_RESTRICT table = ct->lockColors();
1476 const uint8_t* SK_RESTRICT s = src.getAddr8(0, 0);
1477 while (--h >= 0) {
1478 for (int x = 0; x < w; x++) {
1479 alpha[x] = SkGetPackedA32(table[s[x]]);
1480 }
1481 s += rb;
1482 alpha += alphaRowBytes;
1483 }
reed@google.com0a6151d2013-10-10 14:44:56 +00001484 ct->unlockColors();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001485 }
1486 } else { // src is opaque, so just fill alpha[] with 0xFF
1487 memset(alpha, 0xFF, h * alphaRowBytes);
1488 }
reed@android.com1cdcb512009-08-24 19:11:00 +00001489 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001490}
1491
1492#include "SkPaint.h"
1493#include "SkMaskFilter.h"
1494#include "SkMatrix.h"
1495
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001496bool SkBitmap::extractAlpha(SkBitmap* dst, const SkPaint* paint,
djsollen@google.com57f49692011-02-23 20:46:31 +00001497 Allocator *allocator, SkIPoint* offset) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001498 SkDEBUGCODE(this->validate();)
1499
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001500 SkBitmap tmpBitmap;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001501 SkMatrix identity;
1502 SkMask srcM, dstM;
1503
1504 srcM.fBounds.set(0, 0, this->width(), this->height());
1505 srcM.fRowBytes = SkAlign4(this->width());
1506 srcM.fFormat = SkMask::kA8_Format;
1507
1508 SkMaskFilter* filter = paint ? paint->getMaskFilter() : NULL;
1509
1510 // compute our (larger?) dst bounds if we have a filter
1511 if (NULL != filter) {
1512 identity.reset();
1513 srcM.fImage = NULL;
1514 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1515 goto NO_FILTER_CASE;
1516 }
1517 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1518 } else {
1519 NO_FILTER_CASE:
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001520 tmpBitmap.setConfig(SkBitmap::kA8_Config, this->width(), this->height(),
reed@android.com8a1c16f2008-12-17 15:59:43 +00001521 srcM.fRowBytes);
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001522 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1523 // Allocation of pixels for alpha bitmap failed.
1524 SkDebugf("extractAlpha failed to allocate (%d,%d) alpha bitmap\n",
1525 tmpBitmap.width(), tmpBitmap.height());
1526 return false;
1527 }
1528 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001529 if (offset) {
1530 offset->set(0, 0);
1531 }
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001532 tmpBitmap.swap(*dst);
1533 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001534 }
bungeman@google.com02f55842011-10-04 21:25:00 +00001535 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
1536 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001537
1538 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
1539 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1540 goto NO_FILTER_CASE;
1541 }
bungeman@google.com02f55842011-10-04 21:25:00 +00001542 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001543
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001544 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
reed@android.com8a1c16f2008-12-17 15:59:43 +00001545 dstM.fBounds.height(), dstM.fRowBytes);
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001546 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1547 // Allocation of pixels for alpha bitmap failed.
1548 SkDebugf("extractAlpha failed to allocate (%d,%d) alpha bitmap\n",
1549 tmpBitmap.width(), tmpBitmap.height());
1550 return false;
1551 }
1552 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001553 if (offset) {
1554 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop);
1555 }
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001556 SkDEBUGCODE(tmpBitmap.validate();)
1557
1558 tmpBitmap.swap(*dst);
1559 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001560}
1561
1562///////////////////////////////////////////////////////////////////////////////
1563
1564enum {
1565 SERIALIZE_PIXELTYPE_NONE,
djsollen@google.com21830d92012-08-07 19:49:41 +00001566 SERIALIZE_PIXELTYPE_REF_DATA
reed@android.com8a1c16f2008-12-17 15:59:43 +00001567};
1568
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +00001569void SkBitmap::flatten(SkWriteBuffer& buffer) const {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001570 fInfo.flatten(buffer);
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001571 buffer.writeInt(fRowBytes);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001572
reed@android.com8a1c16f2008-12-17 15:59:43 +00001573 if (fPixelRef) {
djsollen@google.com5370cd92012-03-28 20:47:01 +00001574 if (fPixelRef->getFactory()) {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001575 buffer.writeInt(SERIALIZE_PIXELTYPE_REF_DATA);
reed@google.com672588b2014-01-08 15:42:01 +00001576 buffer.writeInt(fPixelRefOrigin.fX);
1577 buffer.writeInt(fPixelRefOrigin.fY);
djsollen@google.com5370cd92012-03-28 20:47:01 +00001578 buffer.writeFlattenable(fPixelRef);
1579 return;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001580 }
1581 // if we get here, we can't record the pixels
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001582 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001583 } else {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001584 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001585 }
1586}
1587
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +00001588void SkBitmap::unflatten(SkReadBuffer& buffer) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001589 this->reset();
weita@google.comf9ab99a2009-05-03 18:23:30 +00001590
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001591 SkImageInfo info;
1592 info.unflatten(buffer);
1593 size_t rowBytes = buffer.readInt();
commit-bot@chromium.org33fed142014-02-13 18:46:13 +00001594 if (!buffer.validate((info.width() >= 0) && (info.height() >= 0) &&
1595 SkColorTypeIsValid(info.fColorType) &&
1596 SkAlphaTypeIsValid(info.fAlphaType) &&
1597 validate_alphaType(info.fColorType, info.fAlphaType) &&
1598 info.validRowBytes(rowBytes))) {
1599 return;
1600 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001601
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001602 bool configIsValid = this->setConfig(info, rowBytes);
1603 buffer.validate(configIsValid);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001604
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001605 int reftype = buffer.readInt();
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +00001606 if (buffer.validate((SERIALIZE_PIXELTYPE_REF_DATA == reftype) ||
1607 (SERIALIZE_PIXELTYPE_NONE == reftype))) {
1608 switch (reftype) {
1609 case SERIALIZE_PIXELTYPE_REF_DATA: {
reed@google.com672588b2014-01-08 15:42:01 +00001610 SkIPoint origin;
1611 origin.fX = buffer.readInt();
1612 origin.fY = buffer.readInt();
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001613 size_t offset = origin.fY * rowBytes + origin.fX * info.bytesPerPixel();
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +00001614 SkPixelRef* pr = buffer.readPixelRef();
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +00001615 if (!buffer.validate((NULL == pr) ||
1616 (pr->getAllocatedSizeInBytes() >= (offset + this->getSafeSize())))) {
reed@google.com672588b2014-01-08 15:42:01 +00001617 origin.setZero();
commit-bot@chromium.orgcd3b15c2013-12-04 17:06:49 +00001618 }
reed@google.com672588b2014-01-08 15:42:01 +00001619 SkSafeUnref(this->setPixelRef(pr, origin));
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +00001620 break;
1621 }
1622 case SERIALIZE_PIXELTYPE_NONE:
1623 break;
1624 default:
1625 SkDEBUGFAIL("unrecognized pixeltype in serialized data");
1626 sk_throw();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001627 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001628 }
1629}
1630
1631///////////////////////////////////////////////////////////////////////////////
1632
1633SkBitmap::RLEPixels::RLEPixels(int width, int height) {
1634 fHeight = height;
commit-bot@chromium.org235002f2013-10-09 18:39:59 +00001635 fYPtrs = (uint8_t**)sk_calloc_throw(height * sizeof(uint8_t*));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001636}
1637
1638SkBitmap::RLEPixels::~RLEPixels() {
1639 sk_free(fYPtrs);
1640}
1641
1642///////////////////////////////////////////////////////////////////////////////
1643
1644#ifdef SK_DEBUG
1645void SkBitmap::validate() const {
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001646 fInfo.validate();
commit-bot@chromium.orgd5414e52014-02-13 22:30:38 +00001647
1648 // ImageInfo may not require this, but Bitmap ensures that opaque-only
1649 // colorTypes report opaque for their alphatype
1650 if (kRGB_565_SkColorType == fInfo.colorType()) {
1651 SkASSERT(kOpaque_SkAlphaType == fInfo.alphaType());
1652 }
1653
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001654 SkASSERT(fInfo.validRowBytes(fRowBytes));
scroggo@google.com8e990eb2013-06-14 15:55:56 +00001655 uint8_t allFlags = kImageIsOpaque_Flag | kImageIsVolatile_Flag | kImageIsImmutable_Flag;
1656#ifdef SK_BUILD_FOR_ANDROID
1657 allFlags |= kHasHardwareMipMap_Flag;
1658#endif
1659 SkASSERT(fFlags <= allFlags);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001660 SkASSERT(fPixelLockCount >= 0);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001661
reed@google.com615316c2014-01-15 19:15:23 +00001662 if (fPixels) {
1663 SkASSERT(fPixelRef);
1664 SkASSERT(fPixelLockCount > 0);
1665 SkASSERT(fPixelRef->isLocked());
1666 SkASSERT(fPixelRef->rowBytes() == fRowBytes);
1667 SkASSERT(fPixelRefOrigin.fX >= 0);
1668 SkASSERT(fPixelRefOrigin.fY >= 0);
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001669 SkASSERT(fPixelRef->info().width() >= (int)this->width() + fPixelRefOrigin.fX);
1670 SkASSERT(fPixelRef->info().fHeight >= (int)this->height() + fPixelRefOrigin.fY);
1671 SkASSERT(fPixelRef->rowBytes() >= fInfo.minRowBytes());
reed@google.com615316c2014-01-15 19:15:23 +00001672 } else {
1673 SkASSERT(NULL == fColorTable);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001674 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001675}
1676#endif
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001677
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +00001678#ifndef SK_IGNORE_TO_STRING
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001679void SkBitmap::toString(SkString* str) const {
1680
1681 static const char* gConfigNames[kConfigCount] = {
rmistry@google.comd6bab022013-12-02 13:50:38 +00001682 "NONE", "A8", "INDEX8", "565", "4444", "8888"
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001683 };
1684
1685 str->appendf("bitmap: ((%d, %d) %s", this->width(), this->height(),
1686 gConfigNames[this->config()]);
1687
1688 str->append(" (");
1689 if (this->isOpaque()) {
1690 str->append("opaque");
1691 } else {
1692 str->append("transparent");
1693 }
1694 if (this->isImmutable()) {
1695 str->append(", immutable");
1696 } else {
1697 str->append(", not-immutable");
1698 }
1699 str->append(")");
1700
1701 SkPixelRef* pr = this->pixelRef();
1702 if (NULL == pr) {
1703 // show null or the explicit pixel address (rare)
1704 str->appendf(" pixels:%p", this->getPixels());
1705 } else {
1706 const char* uri = pr->getURI();
1707 if (NULL != uri) {
1708 str->appendf(" uri:\"%s\"", uri);
1709 } else {
1710 str->appendf(" pixelref:%p", pr);
1711 }
1712 }
1713
1714 str->append(")");
1715}
1716#endif
commit-bot@chromium.org61e96cd2014-02-11 18:21:45 +00001717
1718///////////////////////////////////////////////////////////////////////////////
1719
1720#ifdef SK_DEBUG
1721void SkImageInfo::validate() const {
1722 SkASSERT(fWidth >= 0);
1723 SkASSERT(fHeight >= 0);
1724 SkASSERT(SkColorTypeIsValid(fColorType));
1725 SkASSERT(SkAlphaTypeIsValid(fAlphaType));
1726}
1727#endif