blob: beba9da100491af04804aeb5412b895a46d5fddf [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"
14#include "SkMallocPixelRef.h"
15#include "SkMask.h"
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000016#include "SkOrderedReadBuffer.h"
17#include "SkOrderedWriteBuffer.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000018#include "SkPixelRef.h"
19#include "SkThread.h"
vandebo@chromium.org112706d2011-02-24 22:50:55 +000020#include "SkUnPreMultiply.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000021#include "SkUtils.h"
22#include "SkPackBits.h"
23#include <new>
24
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000025SK_DEFINE_INST_COUNT(SkBitmap::Allocator)
26
reed@android.com149e2f62009-05-22 14:39:03 +000027static bool isPos32Bits(const Sk64& value) {
28 return !value.isNeg() && value.is32();
29}
30
reed@android.com8a1c16f2008-12-17 15:59:43 +000031struct MipLevel {
32 void* fPixels;
33 uint32_t fRowBytes;
reed@android.comf459a492009-03-27 12:33:50 +000034 uint32_t fWidth, fHeight;
reed@android.com8a1c16f2008-12-17 15:59:43 +000035};
36
37struct SkBitmap::MipMap : SkNoncopyable {
38 int32_t fRefCnt;
39 int fLevelCount;
40// MipLevel fLevel[fLevelCount];
41// Pixels[]
weita@google.comf9ab99a2009-05-03 18:23:30 +000042
reed@android.com8a1c16f2008-12-17 15:59:43 +000043 static MipMap* Alloc(int levelCount, size_t pixelSize) {
reed@android.com149e2f62009-05-22 14:39:03 +000044 if (levelCount < 0) {
45 return NULL;
46 }
47 Sk64 size;
48 size.setMul(levelCount + 1, sizeof(MipLevel));
49 size.add(sizeof(MipMap));
scroggo@google.come5f48242013-02-25 21:47:41 +000050 size.add(SkToS32(pixelSize));
reed@android.com149e2f62009-05-22 14:39:03 +000051 if (!isPos32Bits(size)) {
52 return NULL;
53 }
54 MipMap* mm = (MipMap*)sk_malloc_throw(size.get32());
reed@android.com8a1c16f2008-12-17 15:59:43 +000055 mm->fRefCnt = 1;
56 mm->fLevelCount = levelCount;
57 return mm;
58 }
59
60 const MipLevel* levels() const { return (const MipLevel*)(this + 1); }
61 MipLevel* levels() { return (MipLevel*)(this + 1); }
62
63 const void* pixels() const { return levels() + fLevelCount; }
64 void* pixels() { return levels() + fLevelCount; }
weita@google.comf9ab99a2009-05-03 18:23:30 +000065
reed@android.com149e2f62009-05-22 14:39:03 +000066 void ref() {
67 if (SK_MaxS32 == sk_atomic_inc(&fRefCnt)) {
68 sk_throw();
reed@android.com8a1c16f2008-12-17 15:59:43 +000069 }
70 }
reed@android.com149e2f62009-05-22 14:39:03 +000071 void unref() {
72 SkASSERT(fRefCnt > 0);
73 if (sk_atomic_dec(&fRefCnt) == 1) {
74 sk_free(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +000075 }
76 }
77};
reed@android.com8a1c16f2008-12-17 15:59:43 +000078
79///////////////////////////////////////////////////////////////////////////////
80///////////////////////////////////////////////////////////////////////////////
81
82SkBitmap::SkBitmap() {
reed@android.com4516f472009-06-29 16:25:36 +000083 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +000084}
85
86SkBitmap::SkBitmap(const SkBitmap& src) {
87 SkDEBUGCODE(src.validate();)
reed@android.com4516f472009-06-29 16:25:36 +000088 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +000089 *this = src;
90 SkDEBUGCODE(this->validate();)
91}
92
93SkBitmap::~SkBitmap() {
94 SkDEBUGCODE(this->validate();)
95 this->freePixels();
96}
97
98SkBitmap& SkBitmap::operator=(const SkBitmap& src) {
99 if (this != &src) {
100 this->freePixels();
101 memcpy(this, &src, sizeof(src));
102
103 // inc src reference counts
reed@android.com83f7bc32009-07-17 02:42:41 +0000104 SkSafeRef(src.fPixelRef);
reed@android.com149e2f62009-05-22 14:39:03 +0000105 SkSafeRef(src.fMipMap);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000106
107 // we reset our locks if we get blown away
108 fPixelLockCount = 0;
weita@google.comf9ab99a2009-05-03 18:23:30 +0000109
reed@android.com8a1c16f2008-12-17 15:59:43 +0000110 /* The src could be in 3 states
111 1. no pixelref, in which case we just copy/ref the pixels/ctable
112 2. unlocked pixelref, pixels/ctable should be null
113 3. locked pixelref, we should lock the ref again ourselves
114 */
115 if (NULL == fPixelRef) {
116 // leave fPixels as it is
reed@google.com82065d62011-02-07 15:30:46 +0000117 SkSafeRef(fColorTable); // ref the user's ctable if present
reed@android.com8a1c16f2008-12-17 15:59:43 +0000118 } else { // we have a pixelref, so pixels/ctable reflect it
119 // ignore the values from the memcpy
120 fPixels = NULL;
121 fColorTable = NULL;
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000122 // Note that what to for genID is somewhat arbitrary. We have no
123 // way to track changes to raw pixels across multiple SkBitmaps.
124 // Would benefit from an SkRawPixelRef type created by
125 // setPixels.
126 // Just leave the memcpy'ed one but they'll get out of sync
127 // as soon either is modified.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000128 }
129 }
130
131 SkDEBUGCODE(this->validate();)
132 return *this;
133}
134
135void SkBitmap::swap(SkBitmap& other) {
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000136 SkTSwap(fColorTable, other.fColorTable);
137 SkTSwap(fPixelRef, other.fPixelRef);
138 SkTSwap(fPixelRefOffset, other.fPixelRefOffset);
139 SkTSwap(fPixelLockCount, other.fPixelLockCount);
140 SkTSwap(fMipMap, other.fMipMap);
141 SkTSwap(fPixels, other.fPixels);
bsalomon@google.com586f48c2011-04-14 15:07:22 +0000142 SkTSwap(fRowBytes, other.fRowBytes);
143 SkTSwap(fWidth, other.fWidth);
144 SkTSwap(fHeight, other.fHeight);
145 SkTSwap(fConfig, other.fConfig);
146 SkTSwap(fFlags, other.fFlags);
147 SkTSwap(fBytesPerPixel, other.fBytesPerPixel);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000148
149 SkDEBUGCODE(this->validate();)
150}
151
152void SkBitmap::reset() {
153 this->freePixels();
reed@android.com4516f472009-06-29 16:25:36 +0000154 sk_bzero(this, sizeof(*this));
reed@android.com8a1c16f2008-12-17 15:59:43 +0000155}
156
157int SkBitmap::ComputeBytesPerPixel(SkBitmap::Config config) {
158 int bpp;
159 switch (config) {
160 case kNo_Config:
161 case kA1_Config:
162 bpp = 0; // not applicable
163 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000164 case kA8_Config:
165 case kIndex8_Config:
166 bpp = 1;
167 break;
168 case kRGB_565_Config:
169 case kARGB_4444_Config:
170 bpp = 2;
171 break;
172 case kARGB_8888_Config:
173 bpp = 4;
174 break;
175 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000176 SkDEBUGFAIL("unknown config");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000177 bpp = 0; // error
178 break;
179 }
180 return bpp;
181}
182
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000183size_t SkBitmap::ComputeRowBytes(Config c, int width) {
reed@android.com149e2f62009-05-22 14:39:03 +0000184 if (width < 0) {
185 return 0;
186 }
187
188 Sk64 rowBytes;
189 rowBytes.setZero();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000190
191 switch (c) {
192 case kNo_Config:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000193 break;
194 case kA1_Config:
reed@android.com149e2f62009-05-22 14:39:03 +0000195 rowBytes.set(width);
196 rowBytes.add(7);
197 rowBytes.shiftRight(3);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000198 break;
199 case kA8_Config:
200 case kIndex8_Config:
reed@android.com149e2f62009-05-22 14:39:03 +0000201 rowBytes.set(width);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000202 break;
203 case kRGB_565_Config:
204 case kARGB_4444_Config:
reed@android.com149e2f62009-05-22 14:39:03 +0000205 rowBytes.set(width);
206 rowBytes.shiftLeft(1);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000207 break;
208 case kARGB_8888_Config:
reed@android.com149e2f62009-05-22 14:39:03 +0000209 rowBytes.set(width);
210 rowBytes.shiftLeft(2);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000211 break;
212 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000213 SkDEBUGFAIL("unknown config");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000214 break;
215 }
reed@android.com149e2f62009-05-22 14:39:03 +0000216 return isPos32Bits(rowBytes) ? rowBytes.get32() : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000217}
218
219Sk64 SkBitmap::ComputeSize64(Config c, int width, int height) {
220 Sk64 size;
scroggo@google.come5f48242013-02-25 21:47:41 +0000221 size.setMul(SkToS32(SkBitmap::ComputeRowBytes(c, width)), height);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000222 return size;
223}
224
225size_t SkBitmap::ComputeSize(Config c, int width, int height) {
226 Sk64 size = SkBitmap::ComputeSize64(c, width, height);
reed@android.com149e2f62009-05-22 14:39:03 +0000227 return isPos32Bits(size) ? size.get32() : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000228}
229
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000230Sk64 SkBitmap::ComputeSafeSize64(Config config,
231 uint32_t width,
232 uint32_t height,
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000233 size_t rowBytes) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000234 Sk64 safeSize;
235 safeSize.setZero();
236 if (height > 0) {
scroggo@google.come5f48242013-02-25 21:47:41 +0000237 // TODO: Handle the case where the return value from
238 // ComputeRowBytes is more than 31 bits.
239 safeSize.set(SkToS32(ComputeRowBytes(config, width)));
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000240 Sk64 sizeAllButLastRow;
scroggo@google.come5f48242013-02-25 21:47:41 +0000241 sizeAllButLastRow.setMul(height - 1, SkToS32(rowBytes));
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000242 safeSize.add(sizeAllButLastRow);
243 }
244 SkASSERT(!safeSize.isNeg());
245 return safeSize;
246}
247
248size_t SkBitmap::ComputeSafeSize(Config config,
249 uint32_t width,
250 uint32_t height,
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000251 size_t rowBytes) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000252 Sk64 safeSize = ComputeSafeSize64(config, width, height, rowBytes);
253 return (safeSize.is32() ? safeSize.get32() : 0);
254}
255
reed@google.com86b2e432012-03-15 21:17:03 +0000256void SkBitmap::getBounds(SkRect* bounds) const {
257 SkASSERT(bounds);
258 bounds->set(0, 0,
259 SkIntToScalar(fWidth), SkIntToScalar(fHeight));
260}
261
reed@google.com80e14592012-03-16 14:58:07 +0000262void SkBitmap::getBounds(SkIRect* bounds) const {
263 SkASSERT(bounds);
264 bounds->set(0, 0, fWidth, fHeight);
265}
266
reed@google.com86b2e432012-03-15 21:17:03 +0000267///////////////////////////////////////////////////////////////////////////////
268
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000269void SkBitmap::setConfig(Config c, int width, int height, size_t rowBytes) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000270 this->freePixels();
271
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000272 if ((width | height) < 0) {
agl@chromium.org6b8cb252009-06-01 23:52:37 +0000273 goto err;
reed@android.com149e2f62009-05-22 14:39:03 +0000274 }
275
reed@android.com8a1c16f2008-12-17 15:59:43 +0000276 if (rowBytes == 0) {
277 rowBytes = SkBitmap::ComputeRowBytes(c, width);
reed@android.com149e2f62009-05-22 14:39:03 +0000278 if (0 == rowBytes && kNo_Config != c) {
agl@chromium.org6b8cb252009-06-01 23:52:37 +0000279 goto err;
reed@android.com149e2f62009-05-22 14:39:03 +0000280 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000281 }
reed@android.com89bb83a2009-05-29 21:30:42 +0000282
reed@android.com8a1c16f2008-12-17 15:59:43 +0000283 fConfig = SkToU8(c);
reed@android.comf459a492009-03-27 12:33:50 +0000284 fWidth = width;
285 fHeight = height;
scroggo@google.come5f48242013-02-25 21:47:41 +0000286 fRowBytes = SkToU32(rowBytes);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000287
288 fBytesPerPixel = (uint8_t)ComputeBytesPerPixel(c);
289
290 SkDEBUGCODE(this->validate();)
reed@android.com9e0c2fc2009-06-02 18:54:28 +0000291 return;
agl@chromium.org6b8cb252009-06-01 23:52:37 +0000292
reed@android.com9e0c2fc2009-06-02 18:54:28 +0000293 // if we got here, we had an error, so we reset the bitmap to empty
agl@chromium.org6b8cb252009-06-01 23:52:37 +0000294err:
295 this->reset();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000296}
297
298void SkBitmap::updatePixelsFromRef() const {
299 if (NULL != fPixelRef) {
300 if (fPixelLockCount > 0) {
reed@google.comff0da4f2012-05-17 13:14:52 +0000301 SkASSERT(fPixelRef->isLocked());
weita@google.comf9ab99a2009-05-03 18:23:30 +0000302
reed@android.com8a1c16f2008-12-17 15:59:43 +0000303 void* p = fPixelRef->pixels();
304 if (NULL != p) {
305 p = (char*)p + fPixelRefOffset;
306 }
307 fPixels = p;
308 SkRefCnt_SafeAssign(fColorTable, fPixelRef->colorTable());
309 } else {
310 SkASSERT(0 == fPixelLockCount);
311 fPixels = NULL;
reed@android.com149e2f62009-05-22 14:39:03 +0000312 if (fColorTable) {
313 fColorTable->unref();
314 fColorTable = NULL;
315 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000316 }
317 }
318}
319
320SkPixelRef* SkBitmap::setPixelRef(SkPixelRef* pr, size_t offset) {
321 // do this first, we that we never have a non-zero offset with a null ref
322 if (NULL == pr) {
323 offset = 0;
324 }
325
326 if (fPixelRef != pr || fPixelRefOffset != offset) {
327 if (fPixelRef != pr) {
328 this->freePixels();
329 SkASSERT(NULL == fPixelRef);
weita@google.comf9ab99a2009-05-03 18:23:30 +0000330
reed@google.com82065d62011-02-07 15:30:46 +0000331 SkSafeRef(pr);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000332 fPixelRef = pr;
333 }
334 fPixelRefOffset = offset;
335 this->updatePixelsFromRef();
336 }
337
338 SkDEBUGCODE(this->validate();)
339 return pr;
340}
341
342void SkBitmap::lockPixels() const {
343 if (NULL != fPixelRef && 1 == ++fPixelLockCount) {
344 fPixelRef->lockPixels();
345 this->updatePixelsFromRef();
346 }
347 SkDEBUGCODE(this->validate();)
348}
349
350void SkBitmap::unlockPixels() const {
351 SkASSERT(NULL == fPixelRef || fPixelLockCount > 0);
352
353 if (NULL != fPixelRef && 0 == --fPixelLockCount) {
354 fPixelRef->unlockPixels();
355 this->updatePixelsFromRef();
356 }
357 SkDEBUGCODE(this->validate();)
358}
359
reed@google.com9c49bc32011-07-07 13:42:37 +0000360bool SkBitmap::lockPixelsAreWritable() const {
djsollen@google.comc84b8332012-07-27 13:41:44 +0000361 return (fPixelRef) ? fPixelRef->lockPixelsAreWritable() : false;
reed@google.com9c49bc32011-07-07 13:42:37 +0000362}
363
reed@android.com8a1c16f2008-12-17 15:59:43 +0000364void SkBitmap::setPixels(void* p, SkColorTable* ctable) {
reed@google.com8e1034e2012-07-30 13:16:35 +0000365 if (NULL == p) {
366 this->setPixelRef(NULL, 0);
367 return;
368 }
369
djsollen@google.comc84b8332012-07-27 13:41:44 +0000370 Sk64 size = this->getSize64();
371 SkASSERT(!size.isNeg() && size.is32());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000372
djsollen@google.comc84b8332012-07-27 13:41:44 +0000373 this->setPixelRef(new SkMallocPixelRef(p, size.get32(), ctable, false))->unref();
374 // since we're already allocated, we lockPixels right away
375 this->lockPixels();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000376 SkDEBUGCODE(this->validate();)
377}
378
379bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) {
380 HeapAllocator stdalloc;
381
382 if (NULL == allocator) {
383 allocator = &stdalloc;
384 }
385 return allocator->allocPixelRef(this, ctable);
386}
387
388void SkBitmap::freePixels() {
389 // if we're gonna free the pixels, we certainly need to free the mipmap
390 this->freeMipMap();
391
reed@android.com149e2f62009-05-22 14:39:03 +0000392 if (fColorTable) {
393 fColorTable->unref();
394 fColorTable = NULL;
395 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000396
397 if (NULL != fPixelRef) {
398 if (fPixelLockCount > 0) {
399 fPixelRef->unlockPixels();
400 }
401 fPixelRef->unref();
402 fPixelRef = NULL;
403 fPixelRefOffset = 0;
404 }
405 fPixelLockCount = 0;
406 fPixels = NULL;
407}
408
409void SkBitmap::freeMipMap() {
reed@android.com149e2f62009-05-22 14:39:03 +0000410 if (fMipMap) {
411 fMipMap->unref();
412 fMipMap = NULL;
413 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000414}
415
416uint32_t SkBitmap::getGenerationID() const {
djsollen@google.comc84b8332012-07-27 13:41:44 +0000417 return (fPixelRef) ? fPixelRef->getGenerationID() : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000418}
419
420void SkBitmap::notifyPixelsChanged() const {
junov@chromium.orgb0521292011-12-15 20:14:06 +0000421 SkASSERT(!this->isImmutable());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000422 if (fPixelRef) {
423 fPixelRef->notifyPixelsChanged();
424 }
425}
426
commit-bot@chromium.orgb8d00db2013-06-26 19:18:23 +0000427GrTexture* SkBitmap::getTexture() const {
reed@android.comce4e53a2010-09-09 16:01:26 +0000428 return fPixelRef ? fPixelRef->getTexture() : NULL;
429}
430
reed@android.com8a1c16f2008-12-17 15:59:43 +0000431///////////////////////////////////////////////////////////////////////////////
432
reed@android.com8a1c16f2008-12-17 15:59:43 +0000433/** We explicitly use the same allocator for our pixels that SkMask does,
434 so that we can freely assign memory allocated by one class to the other.
435 */
436bool SkBitmap::HeapAllocator::allocPixelRef(SkBitmap* dst,
437 SkColorTable* ctable) {
438 Sk64 size = dst->getSize64();
439 if (size.isNeg() || !size.is32()) {
440 return false;
441 }
weita@google.comf9ab99a2009-05-03 18:23:30 +0000442
reed@android.com8a1c16f2008-12-17 15:59:43 +0000443 void* addr = sk_malloc_flags(size.get32(), 0); // returns NULL on failure
444 if (NULL == addr) {
445 return false;
446 }
weita@google.comf9ab99a2009-05-03 18:23:30 +0000447
reed@android.com8a1c16f2008-12-17 15:59:43 +0000448 dst->setPixelRef(new SkMallocPixelRef(addr, size.get32(), ctable))->unref();
449 // since we're already allocated, we lockPixels right away
450 dst->lockPixels();
451 return true;
452}
453
454///////////////////////////////////////////////////////////////////////////////
455
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000456size_t SkBitmap::getSafeSize() const {
457 // This is intended to be a size_t version of ComputeSafeSize64(), just
458 // faster. The computation is meant to be identical.
459 return (fHeight ? ((fHeight - 1) * fRowBytes) +
460 ComputeRowBytes(getConfig(), fWidth): 0);
461}
462
463Sk64 SkBitmap::getSafeSize64() const {
464 return ComputeSafeSize64(getConfig(), fWidth, fHeight, fRowBytes);
465}
466
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000467bool SkBitmap::copyPixelsTo(void* const dst, size_t dstSize,
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000468 size_t dstRowBytes, bool preserveDstPad) const {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000469
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000470 if (0 == dstRowBytes) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000471 dstRowBytes = fRowBytes;
scroggo@google.com0ba4bf42013-02-25 16:02:36 +0000472 }
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000473
reed@google.com2cb14802013-06-26 14:35:02 +0000474 if (dstRowBytes < ComputeRowBytes(getConfig(), fWidth) ||
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000475 dst == NULL || (getPixels() == NULL && pixelRef() == NULL))
476 return false;
477
bsalomon@google.comc6980972011-11-02 19:57:21 +0000478 if (!preserveDstPad && static_cast<uint32_t>(dstRowBytes) == fRowBytes) {
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000479 size_t safeSize = getSafeSize();
480 if (safeSize > dstSize || safeSize == 0)
481 return false;
482 else {
483 SkAutoLockPixels lock(*this);
484 // This implementation will write bytes beyond the end of each row,
485 // excluding the last row, if the bitmap's stride is greater than
486 // strictly required by the current config.
487 memcpy(dst, getPixels(), safeSize);
488
489 return true;
490 }
491 } else {
492 // If destination has different stride than us, then copy line by line.
493 if (ComputeSafeSize(getConfig(), fWidth, fHeight, dstRowBytes) >
494 dstSize)
495 return false;
496 else {
497 // Just copy what we need on each line.
scroggo@google.come5f48242013-02-25 21:47:41 +0000498 size_t rowBytes = ComputeRowBytes(getConfig(), fWidth);
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000499 SkAutoLockPixels lock(*this);
500 const uint8_t* srcP = reinterpret_cast<const uint8_t*>(getPixels());
501 uint8_t* dstP = reinterpret_cast<uint8_t*>(dst);
502 for (uint32_t row = 0; row < fHeight;
503 row++, srcP += fRowBytes, dstP += dstRowBytes) {
504 memcpy(dstP, srcP, rowBytes);
505 }
506
507 return true;
508 }
509 }
510}
511
wjmaclean@chromium.org86bff1f2010-11-16 20:22:41 +0000512///////////////////////////////////////////////////////////////////////////////
513
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000514bool SkBitmap::isImmutable() const {
junov@chromium.orgb0521292011-12-15 20:14:06 +0000515 return fPixelRef ? fPixelRef->isImmutable() :
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000516 fFlags & kImageIsImmutable_Flag;
junov@chromium.orgb0521292011-12-15 20:14:06 +0000517}
518
519void SkBitmap::setImmutable() {
520 if (fPixelRef) {
521 fPixelRef->setImmutable();
522 } else {
523 fFlags |= kImageIsImmutable_Flag;
524 }
525}
526
reed@android.com8a1c16f2008-12-17 15:59:43 +0000527bool SkBitmap::isOpaque() const {
528 switch (fConfig) {
529 case kNo_Config:
530 return true;
531
532 case kA1_Config:
533 case kA8_Config:
534 case kARGB_4444_Config:
535 case kARGB_8888_Config:
536 return (fFlags & kImageIsOpaque_Flag) != 0;
537
reed@google.com2cb14802013-06-26 14:35:02 +0000538 case kIndex8_Config: {
539 uint32_t flags = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000540
reed@google.com2cb14802013-06-26 14:35:02 +0000541 this->lockPixels();
542 // if lockPixels failed, we may not have a ctable ptr
543 if (fColorTable) {
544 flags = fColorTable->getFlags();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000545 }
reed@google.com2cb14802013-06-26 14:35:02 +0000546 this->unlockPixels();
547
548 return (flags & SkColorTable::kColorsAreOpaque_Flag) != 0;
549 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000550
551 case kRGB_565_Config:
552 return true;
553
554 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000555 SkDEBUGFAIL("unknown bitmap config pased to isOpaque");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000556 return false;
557 }
558}
559
560void SkBitmap::setIsOpaque(bool isOpaque) {
561 /* we record this regardless of fConfig, though it is ignored in
562 isOpaque() for configs that can't support per-pixel alpha.
563 */
564 if (isOpaque) {
565 fFlags |= kImageIsOpaque_Flag;
566 } else {
567 fFlags &= ~kImageIsOpaque_Flag;
568 }
569}
570
junov@google.com4ee7ae52011-06-30 17:30:49 +0000571bool SkBitmap::isVolatile() const {
572 return (fFlags & kImageIsVolatile_Flag) != 0;
573}
574
575void SkBitmap::setIsVolatile(bool isVolatile) {
576 if (isVolatile) {
577 fFlags |= kImageIsVolatile_Flag;
578 } else {
579 fFlags &= ~kImageIsVolatile_Flag;
580 }
581}
582
reed@android.com8a1c16f2008-12-17 15:59:43 +0000583void* SkBitmap::getAddr(int x, int y) const {
584 SkASSERT((unsigned)x < (unsigned)this->width());
585 SkASSERT((unsigned)y < (unsigned)this->height());
586
587 char* base = (char*)this->getPixels();
588 if (base) {
589 base += y * this->rowBytes();
590 switch (this->config()) {
591 case SkBitmap::kARGB_8888_Config:
592 base += x << 2;
593 break;
594 case SkBitmap::kARGB_4444_Config:
595 case SkBitmap::kRGB_565_Config:
596 base += x << 1;
597 break;
598 case SkBitmap::kA8_Config:
599 case SkBitmap::kIndex8_Config:
600 base += x;
601 break;
602 case SkBitmap::kA1_Config:
603 base += x >> 3;
604 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000605 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +0000606 SkDEBUGFAIL("Can't return addr for config");
reed@android.com8a1c16f2008-12-17 15:59:43 +0000607 base = NULL;
608 break;
609 }
610 }
611 return base;
612}
613
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000614SkColor SkBitmap::getColor(int x, int y) const {
615 SkASSERT((unsigned)x < (unsigned)this->width());
616 SkASSERT((unsigned)y < (unsigned)this->height());
617
618 switch (this->config()) {
619 case SkBitmap::kA1_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000620 uint8_t* addr = this->getAddr1(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000621 uint8_t mask = 1 << (7 - (x % 8));
622 if (addr[0] & mask) {
623 return SK_ColorBLACK;
624 } else {
625 return 0;
626 }
627 }
628 case SkBitmap::kA8_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000629 uint8_t* addr = this->getAddr8(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000630 return SkColorSetA(0, addr[0]);
631 }
632 case SkBitmap::kIndex8_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000633 SkPMColor c = this->getIndex8Color(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000634 return SkUnPreMultiply::PMColorToColor(c);
635 }
636 case SkBitmap::kRGB_565_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000637 uint16_t* addr = this->getAddr16(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000638 return SkPixel16ToColor(addr[0]);
639 }
640 case SkBitmap::kARGB_4444_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000641 uint16_t* addr = this->getAddr16(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000642 SkPMColor c = SkPixel4444ToPixel32(addr[0]);
643 return SkUnPreMultiply::PMColorToColor(c);
644 }
645 case SkBitmap::kARGB_8888_Config: {
reed@google.com3b521d02011-04-29 11:53:41 +0000646 uint32_t* addr = this->getAddr32(x, y);
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000647 return SkUnPreMultiply::PMColorToColor(addr[0]);
648 }
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000649 case kNo_Config:
vandebo@chromium.org112706d2011-02-24 22:50:55 +0000650 SkASSERT(false);
651 return 0;
652 }
653 SkASSERT(false); // Not reached.
654 return 0;
655}
656
reed@google.com2a7579d2012-11-07 18:30:18 +0000657bool SkBitmap::ComputeIsOpaque(const SkBitmap& bm) {
658 SkAutoLockPixels alp(bm);
659 if (!bm.getPixels()) {
660 return false;
661 }
662
663 const int height = bm.height();
664 const int width = bm.width();
665
666 switch (bm.config()) {
667 case SkBitmap::kA1_Config: {
668 // TODO
669 } break;
670 case SkBitmap::kA8_Config: {
671 unsigned a = 0xFF;
672 for (int y = 0; y < height; ++y) {
673 const uint8_t* row = bm.getAddr8(0, y);
674 for (int x = 0; x < width; ++x) {
675 a &= row[x];
676 }
677 if (0xFF != a) {
678 return false;
679 }
680 }
681 return true;
682 } break;
reed@google.com2a7579d2012-11-07 18:30:18 +0000683 case SkBitmap::kIndex8_Config: {
684 SkAutoLockColors alc(bm);
685 const SkPMColor* table = alc.colors();
686 if (!table) {
687 return false;
688 }
reed@google.com140d7282013-01-07 20:25:04 +0000689 SkPMColor c = (SkPMColor)~0;
reed@google.com2a7579d2012-11-07 18:30:18 +0000690 for (int i = bm.getColorTable()->count() - 1; i >= 0; --i) {
691 c &= table[i];
692 }
693 return 0xFF == SkGetPackedA32(c);
694 } break;
695 case SkBitmap::kRGB_565_Config:
696 return true;
697 break;
698 case SkBitmap::kARGB_4444_Config: {
699 unsigned c = 0xFFFF;
700 for (int y = 0; y < height; ++y) {
701 const SkPMColor16* row = bm.getAddr16(0, y);
702 for (int x = 0; x < width; ++x) {
703 c &= row[x];
704 }
705 if (0xF != SkGetPackedA4444(c)) {
706 return false;
707 }
708 }
709 return true;
710 } break;
711 case SkBitmap::kARGB_8888_Config: {
reed@google.com140d7282013-01-07 20:25:04 +0000712 SkPMColor c = (SkPMColor)~0;
reed@google.com2a7579d2012-11-07 18:30:18 +0000713 for (int y = 0; y < height; ++y) {
714 const SkPMColor* row = bm.getAddr32(0, y);
715 for (int x = 0; x < width; ++x) {
716 c &= row[x];
717 }
718 if (0xFF != SkGetPackedA32(c)) {
719 return false;
720 }
721 }
722 return true;
723 }
724 default:
725 break;
726 }
727 return false;
728}
729
730
reed@android.com8a1c16f2008-12-17 15:59:43 +0000731///////////////////////////////////////////////////////////////////////////////
732///////////////////////////////////////////////////////////////////////////////
733
reed@google.com45f746f2013-06-21 19:51:31 +0000734static uint16_t pack_8888_to_4444(unsigned a, unsigned r, unsigned g, unsigned b) {
735 unsigned pixel = (SkA32To4444(a) << SK_A4444_SHIFT) |
736 (SkR32To4444(r) << SK_R4444_SHIFT) |
737 (SkG32To4444(g) << SK_G4444_SHIFT) |
738 (SkB32To4444(b) << SK_B4444_SHIFT);
739 return SkToU16(pixel);
740}
741
reed@google.com60d32352013-06-28 19:40:50 +0000742void SkBitmap::internalErase(const SkIRect& area,
743 U8CPU a, U8CPU r, U8CPU g, U8CPU b) const {
744#ifdef SK_DEBUG
reed@android.com8a1c16f2008-12-17 15:59:43 +0000745 SkDEBUGCODE(this->validate();)
reed@google.com60d32352013-06-28 19:40:50 +0000746 SkASSERT(!area.isEmpty());
747 {
reed@google.com92833f92013-06-28 19:47:43 +0000748 SkIRect total = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000749 SkASSERT(total.contains(area));
750 }
751#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000752
reed@google.com60d32352013-06-28 19:40:50 +0000753 if (kNo_Config == fConfig || kIndex8_Config == fConfig) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000754 return;
755 }
756
757 SkAutoLockPixels alp(*this);
758 // perform this check after the lock call
759 if (!this->readyToDraw()) {
760 return;
761 }
762
reed@google.com60d32352013-06-28 19:40:50 +0000763 int height = area.height();
764 const int width = area.width();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000765 const int rowBytes = fRowBytes;
766
767 // make rgb premultiplied
768 if (255 != a) {
769 r = SkAlphaMul(r, a);
770 g = SkAlphaMul(g, a);
771 b = SkAlphaMul(b, a);
772 }
773
774 switch (fConfig) {
775 case kA1_Config: {
reed@google.com60d32352013-06-28 19:40:50 +0000776 uint8_t* p = this->getAddr1(area.fLeft, area.fTop);
777 const int left = area.fLeft >> 3;
778 const int right = area.fRight >> 3;
779
780 int middle = right - left - 1;
781
782 uint8_t leftMask = 0xFF >> (area.fLeft & 7);
783 uint8_t rightMask = ~(0xFF >> (area.fRight & 7));
784 if (left == right) {
785 leftMask &= rightMask;
786 rightMask = 0;
787 }
788
reed@android.com8a1c16f2008-12-17 15:59:43 +0000789 a = (a >> 7) ? 0xFF : 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000790 while (--height >= 0) {
reed@google.com60d32352013-06-28 19:40:50 +0000791 uint8_t* startP = p;
792
793 *p = (*p & ~leftMask) | (a & leftMask);
794 p++;
795 if (middle > 0) {
796 memset(p, a, middle);
797 p += middle;
798 }
799 if (rightMask) {
800 *p = (*p & ~rightMask) | (a & rightMask);
801 }
802
803 p = startP + rowBytes;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000804 }
805 break;
806 }
807 case kA8_Config: {
reed@google.com60d32352013-06-28 19:40:50 +0000808 uint8_t* p = this->getAddr8(area.fLeft, area.fTop);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000809 while (--height >= 0) {
810 memset(p, a, width);
811 p += rowBytes;
812 }
813 break;
814 }
reed@google.com45f746f2013-06-21 19:51:31 +0000815 case kARGB_4444_Config:
reed@android.com8a1c16f2008-12-17 15:59:43 +0000816 case kRGB_565_Config: {
reed@google.com60d32352013-06-28 19:40:50 +0000817 uint16_t* p = this->getAddr16(area.fLeft, area.fTop);;
reed@google.com45f746f2013-06-21 19:51:31 +0000818 uint16_t v;
skia.committer@gmail.com020b25b2013-06-22 07:00:58 +0000819
reed@google.com45f746f2013-06-21 19:51:31 +0000820 if (kARGB_4444_Config == fConfig) {
821 v = pack_8888_to_4444(a, r, g, b);
822 } else {
823 v = SkPackRGB16(r >> (8 - SK_R16_BITS),
824 g >> (8 - SK_G16_BITS),
825 b >> (8 - SK_B16_BITS));
826 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000827 while (--height >= 0) {
828 sk_memset16(p, v, width);
829 p = (uint16_t*)((char*)p + rowBytes);
830 }
831 break;
832 }
833 case kARGB_8888_Config: {
reed@google.com60d32352013-06-28 19:40:50 +0000834 uint32_t* p = this->getAddr32(area.fLeft, area.fTop);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000835 uint32_t v = SkPackARGB32(a, r, g, b);
836
837 while (--height >= 0) {
838 sk_memset32(p, v, width);
839 p = (uint32_t*)((char*)p + rowBytes);
840 }
841 break;
842 }
843 }
weita@google.comf9ab99a2009-05-03 18:23:30 +0000844
reed@android.com8a1c16f2008-12-17 15:59:43 +0000845 this->notifyPixelsChanged();
846}
847
reed@google.com60d32352013-06-28 19:40:50 +0000848void SkBitmap::eraseARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b) const {
reed@google.com92833f92013-06-28 19:47:43 +0000849 SkIRect area = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000850 if (!area.isEmpty()) {
851 this->internalErase(area, a, r, g, b);
852 }
853}
854
855void SkBitmap::eraseArea(const SkIRect& rect, SkColor c) const {
reed@google.com92833f92013-06-28 19:47:43 +0000856 SkIRect area = { 0, 0, this->width(), this->height() };
reed@google.com60d32352013-06-28 19:40:50 +0000857 if (area.intersect(rect)) {
858 this->internalErase(area, SkColorGetA(c), SkColorGetR(c),
859 SkColorGetG(c), SkColorGetB(c));
860 }
861}
862
reed@android.com8a1c16f2008-12-17 15:59:43 +0000863//////////////////////////////////////////////////////////////////////////////////////
864//////////////////////////////////////////////////////////////////////////////////////
865
866#define SUB_OFFSET_FAILURE ((size_t)-1)
867
scroggo@google.coma2a31922012-12-07 19:14:45 +0000868/**
869 * Based on the Config and rowBytes() of bm, return the offset into an SkPixelRef of the pixel at
870 * (x, y).
871 * Note that the SkPixelRef does not need to be set yet. deepCopyTo takes advantage of this fact.
872 * Also note that (x, y) may be outside the range of (0 - width(), 0 - height()), so long as it is
873 * within the bounds of the SkPixelRef being used.
874 */
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000875static size_t get_sub_offset(const SkBitmap& bm, int x, int y) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000876 switch (bm.getConfig()) {
877 case SkBitmap::kA8_Config:
878 case SkBitmap:: kIndex8_Config:
879 // x is fine as is for the calculation
880 break;
881
882 case SkBitmap::kRGB_565_Config:
883 case SkBitmap::kARGB_4444_Config:
884 x <<= 1;
885 break;
886
887 case SkBitmap::kARGB_8888_Config:
888 x <<= 2;
889 break;
890
891 case SkBitmap::kNo_Config:
892 case SkBitmap::kA1_Config:
893 default:
894 return SUB_OFFSET_FAILURE;
895 }
896 return y * bm.rowBytes() + x;
897}
898
scroggo@google.coma2a31922012-12-07 19:14:45 +0000899/**
900 * Using the pixelRefOffset(), rowBytes(), and Config of bm, determine the (x, y) coordinate of the
901 * upper left corner of bm relative to its SkPixelRef.
902 * x and y must be non-NULL.
903 */
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000904bool get_upper_left_from_offset(SkBitmap::Config config, size_t offset, size_t rowBytes,
scroggo@google.com61d6c9e2013-05-21 20:38:40 +0000905 int32_t* x, int32_t* y);
906bool get_upper_left_from_offset(SkBitmap::Config config, size_t offset, size_t rowBytes,
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000907 int32_t* x, int32_t* y) {
scroggo@google.coma2a31922012-12-07 19:14:45 +0000908 SkASSERT(x != NULL && y != NULL);
scroggo@google.coma2a31922012-12-07 19:14:45 +0000909 if (0 == offset) {
910 *x = *y = 0;
911 return true;
912 }
913 // Use integer division to find the correct y position.
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000914 *y = SkToS32(offset / rowBytes);
915 // The remainder will be the x position, after we reverse get_sub_offset.
916 *x = SkToS32(offset % rowBytes);
917 switch (config) {
scroggo@google.coma2a31922012-12-07 19:14:45 +0000918 case SkBitmap::kA8_Config:
919 // Fall through.
920 case SkBitmap::kIndex8_Config:
921 // x is unmodified
922 break;
923
924 case SkBitmap::kRGB_565_Config:
925 // Fall through.
926 case SkBitmap::kARGB_4444_Config:
927 *x >>= 1;
928 break;
929
930 case SkBitmap::kARGB_8888_Config:
931 *x >>= 2;
932 break;
933
934 case SkBitmap::kNo_Config:
935 // Fall through.
936 case SkBitmap::kA1_Config:
937 // Fall through.
938 default:
939 return false;
940 }
941 return true;
942}
943
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000944static bool get_upper_left_from_offset(const SkBitmap& bm, int32_t* x, int32_t* y) {
945 return get_upper_left_from_offset(bm.config(), bm.pixelRefOffset(), bm.rowBytes(), x, y);
946}
947
reed@android.com8a1c16f2008-12-17 15:59:43 +0000948bool SkBitmap::extractSubset(SkBitmap* result, const SkIRect& subset) const {
949 SkDEBUGCODE(this->validate();)
950
djsollen@google.comc84b8332012-07-27 13:41:44 +0000951 if (NULL == result || NULL == fPixelRef) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000952 return false; // no src pixels
953 }
954
955 SkIRect srcRect, r;
956 srcRect.set(0, 0, this->width(), this->height());
957 if (!r.intersect(srcRect, subset)) {
958 return false; // r is empty (i.e. no intersection)
959 }
960
scroggo@google.coma2a31922012-12-07 19:14:45 +0000961 if (fPixelRef->getTexture() != NULL) {
962 // Do a deep copy
963 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
964 if (pixelRef != NULL) {
965 SkBitmap dst;
966 dst.setConfig(this->config(), subset.width(), subset.height());
967 dst.setIsVolatile(this->isVolatile());
968 dst.setIsOpaque(this->isOpaque());
969 dst.setPixelRef(pixelRef)->unref();
970 SkDEBUGCODE(dst.validate());
971 result->swap(dst);
972 return true;
973 }
974 }
975
scroggo@google.coma2a31922012-12-07 19:14:45 +0000976 // If the upper left of the rectangle was outside the bounds of this SkBitmap, we should have
977 // exited above.
978 SkASSERT(static_cast<unsigned>(r.fLeft) < static_cast<unsigned>(this->width()));
979 SkASSERT(static_cast<unsigned>(r.fTop) < static_cast<unsigned>(this->height()));
980
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000981 size_t offset = get_sub_offset(*this, r.fLeft, r.fTop);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000982 if (SUB_OFFSET_FAILURE == offset) {
983 return false; // config not supported
984 }
985
986 SkBitmap dst;
987 dst.setConfig(this->config(), r.width(), r.height(), this->rowBytes());
skyostil@google.com0eb75762012-01-16 10:45:53 +0000988 dst.setIsVolatile(this->isVolatile());
reed@google.com04685d22012-10-15 13:45:40 +0000989 dst.setIsOpaque(this->isOpaque());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000990
991 if (fPixelRef) {
992 // share the pixelref with a custom offset
993 dst.setPixelRef(fPixelRef, fPixelRefOffset + offset);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000994 }
995 SkDEBUGCODE(dst.validate();)
996
997 // we know we're good, so commit to result
998 result->swap(dst);
999 return true;
1000}
1001
1002///////////////////////////////////////////////////////////////////////////////
1003
1004#include "SkCanvas.h"
1005#include "SkPaint.h"
1006
reed@android.comfbaa88d2009-05-06 17:44:34 +00001007bool SkBitmap::canCopyTo(Config dstConfig) const {
1008 if (this->getConfig() == kNo_Config) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001009 return false;
1010 }
1011
reed@android.comfbaa88d2009-05-06 17:44:34 +00001012 bool sameConfigs = (this->config() == dstConfig);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001013 switch (dstConfig) {
1014 case kA8_Config:
reed@android.com8a1c16f2008-12-17 15:59:43 +00001015 case kRGB_565_Config:
1016 case kARGB_8888_Config:
1017 break;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001018 case kA1_Config:
1019 case kIndex8_Config:
reed@google.com6ba45722013-06-21 18:30:53 +00001020 case kARGB_4444_Config:
weita@google.comf9ab99a2009-05-03 18:23:30 +00001021 if (!sameConfigs) {
1022 return false;
1023 }
1024 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001025 default:
1026 return false;
1027 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001028
1029 // do not copy src if srcConfig == kA1_Config while dstConfig != kA1_Config
1030 if (this->getConfig() == kA1_Config && !sameConfigs) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001031 return false;
1032 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001033
reed@android.comfbaa88d2009-05-06 17:44:34 +00001034 return true;
1035}
1036
1037bool SkBitmap::copyTo(SkBitmap* dst, Config dstConfig, Allocator* alloc) const {
1038 if (!this->canCopyTo(dstConfig)) {
1039 return false;
1040 }
1041
reed@google.com50dfa012011-04-01 19:05:36 +00001042 // if we have a texture, first get those pixels
1043 SkBitmap tmpSrc;
1044 const SkBitmap* src = this;
1045
scroggo@google.coma2a31922012-12-07 19:14:45 +00001046 if (fPixelRef) {
1047 SkIRect subset;
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001048 if (get_upper_left_from_offset(*this, &subset.fLeft, &subset.fTop)) {
scroggo@google.coma2a31922012-12-07 19:14:45 +00001049 subset.fRight = subset.fLeft + fWidth;
1050 subset.fBottom = subset.fTop + fHeight;
1051 if (fPixelRef->readPixels(&tmpSrc, &subset)) {
1052 SkASSERT(tmpSrc.width() == this->width());
1053 SkASSERT(tmpSrc.height() == this->height());
reed@google.com50dfa012011-04-01 19:05:36 +00001054
scroggo@google.coma2a31922012-12-07 19:14:45 +00001055 // did we get lucky and we can just return tmpSrc?
1056 if (tmpSrc.config() == dstConfig && NULL == alloc) {
1057 dst->swap(tmpSrc);
1058 if (dst->pixelRef() && this->config() == dstConfig) {
1059 dst->pixelRef()->fGenerationID = fPixelRef->getGenerationID();
1060 }
1061 return true;
1062 }
1063
1064 // fall through to the raster case
1065 src = &tmpSrc;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001066 }
reed@google.com50dfa012011-04-01 19:05:36 +00001067 }
reed@android.comfbaa88d2009-05-06 17:44:34 +00001068 }
reed@android.com311c82d2009-05-05 23:13:23 +00001069
reed@google.com50dfa012011-04-01 19:05:36 +00001070 // we lock this now, since we may need its colortable
1071 SkAutoLockPixels srclock(*src);
1072 if (!src->readyToDraw()) {
1073 return false;
1074 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001075
reed@google.com50dfa012011-04-01 19:05:36 +00001076 SkBitmap tmpDst;
1077 tmpDst.setConfig(dstConfig, src->width(), src->height());
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001078
weita@google.comf9ab99a2009-05-03 18:23:30 +00001079 // allocate colortable if srcConfig == kIndex8_Config
1080 SkColorTable* ctable = (dstConfig == kIndex8_Config) ?
reed@google.com50dfa012011-04-01 19:05:36 +00001081 new SkColorTable(*src->getColorTable()) : NULL;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001082 SkAutoUnref au(ctable);
reed@google.com50dfa012011-04-01 19:05:36 +00001083 if (!tmpDst.allocPixels(alloc, ctable)) {
weita@google.comf9ab99a2009-05-03 18:23:30 +00001084 return false;
1085 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001086
reed@google.com50dfa012011-04-01 19:05:36 +00001087 if (!tmpDst.readyToDraw()) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001088 // allocator/lock failed
1089 return false;
1090 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +00001091
reed@android.comfbaa88d2009-05-06 17:44:34 +00001092 /* do memcpy for the same configs cases, else use drawing
weita@google.comf9ab99a2009-05-03 18:23:30 +00001093 */
reed@google.com50dfa012011-04-01 19:05:36 +00001094 if (src->config() == dstConfig) {
1095 if (tmpDst.getSize() == src->getSize()) {
1096 memcpy(tmpDst.getPixels(), src->getPixels(), src->getSafeSize());
scroggo@google.comd5764e82012-08-22 15:00:05 +00001097 SkPixelRef* pixelRef = tmpDst.pixelRef();
1098 if (pixelRef != NULL) {
1099 pixelRef->fGenerationID = this->getGenerationID();
1100 }
reed@android.com311c82d2009-05-05 23:13:23 +00001101 } else {
reed@google.com50dfa012011-04-01 19:05:36 +00001102 const char* srcP = reinterpret_cast<const char*>(src->getPixels());
1103 char* dstP = reinterpret_cast<char*>(tmpDst.getPixels());
reed@android.com311c82d2009-05-05 23:13:23 +00001104 // to be sure we don't read too much, only copy our logical pixels
reed@google.com50dfa012011-04-01 19:05:36 +00001105 size_t bytesToCopy = tmpDst.width() * tmpDst.bytesPerPixel();
1106 for (int y = 0; y < tmpDst.height(); y++) {
reed@android.com311c82d2009-05-05 23:13:23 +00001107 memcpy(dstP, srcP, bytesToCopy);
reed@google.com50dfa012011-04-01 19:05:36 +00001108 srcP += src->rowBytes();
1109 dstP += tmpDst.rowBytes();
reed@android.com311c82d2009-05-05 23:13:23 +00001110 }
1111 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001112 } else {
1113 // if the src has alpha, we have to clear the dst first
reed@google.com50dfa012011-04-01 19:05:36 +00001114 if (!src->isOpaque()) {
junov@google.comdbfac8a2012-12-06 21:47:40 +00001115 tmpDst.eraseColor(SK_ColorTRANSPARENT);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001116 }
1117
reed@google.com50dfa012011-04-01 19:05:36 +00001118 SkCanvas canvas(tmpDst);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001119 SkPaint paint;
1120
1121 paint.setDither(true);
reed@google.com50dfa012011-04-01 19:05:36 +00001122 canvas.drawBitmap(*src, 0, 0, &paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001123 }
1124
reed@google.com50dfa012011-04-01 19:05:36 +00001125 tmpDst.setIsOpaque(src->isOpaque());
reed@android.comcafc9f92009-08-22 03:44:57 +00001126
reed@google.com50dfa012011-04-01 19:05:36 +00001127 dst->swap(tmpDst);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001128 return true;
1129}
1130
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001131bool SkBitmap::deepCopyTo(SkBitmap* dst, Config dstConfig) const {
1132 if (!this->canCopyTo(dstConfig)) {
1133 return false;
1134 }
1135
1136 // If we have a PixelRef, and it supports deep copy, use it.
1137 // Currently supported only by texture-backed bitmaps.
1138 if (fPixelRef) {
1139 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstConfig);
1140 if (pixelRef) {
scroggo@google.coma2a31922012-12-07 19:14:45 +00001141 uint32_t rowBytes;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001142 if (dstConfig == fConfig) {
1143 pixelRef->fGenerationID = fPixelRef->getGenerationID();
scroggo@google.coma2a31922012-12-07 19:14:45 +00001144 // Use the same rowBytes as the original.
1145 rowBytes = fRowBytes;
1146 } else {
1147 // With the new config, an appropriate fRowBytes will be computed by setConfig.
1148 rowBytes = 0;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001149 }
scroggo@google.coma2a31922012-12-07 19:14:45 +00001150 dst->setConfig(dstConfig, fWidth, fHeight, rowBytes);
1151
1152 size_t pixelRefOffset;
1153 if (0 == fPixelRefOffset || dstConfig == fConfig) {
1154 // Use the same offset as the original.
1155 pixelRefOffset = fPixelRefOffset;
1156 } else {
1157 // Find the correct offset in the new config. This needs to be done after calling
1158 // setConfig so dst's fConfig and fRowBytes have been set properly.
scroggo@google.come5f48242013-02-25 21:47:41 +00001159 int32_t x, y;
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001160 if (!get_upper_left_from_offset(*this, &x, &y)) {
scroggo@google.coma2a31922012-12-07 19:14:45 +00001161 return false;
1162 }
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001163 pixelRefOffset = get_sub_offset(*dst, x, y);
scroggo@google.coma2a31922012-12-07 19:14:45 +00001164 if (SUB_OFFSET_FAILURE == pixelRefOffset) {
1165 return false;
1166 }
1167 }
1168 dst->setPixelRef(pixelRef, pixelRefOffset)->unref();
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001169 return true;
1170 }
1171 }
1172
1173 if (this->getTexture()) {
1174 return false;
1175 } else {
1176 return this->copyTo(dst, dstConfig, NULL);
1177 }
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
1293 const SkBitmap::Config config = this->getConfig();
1294
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
1432 SkBitmap::Config config = src.getConfig();
1433 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 }
1484 ct->unlockColors(false);
1485 }
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
reed@android.com8a1c16f2008-12-17 15:59:43 +00001569void SkBitmap::flatten(SkFlattenableWriteBuffer& buffer) const {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001570 buffer.writeInt(fWidth);
1571 buffer.writeInt(fHeight);
1572 buffer.writeInt(fRowBytes);
1573 buffer.writeInt(fConfig);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001574 buffer.writeBool(this->isOpaque());
weita@google.comf9ab99a2009-05-03 18:23:30 +00001575
reed@android.com8a1c16f2008-12-17 15:59:43 +00001576 if (fPixelRef) {
djsollen@google.com5370cd92012-03-28 20:47:01 +00001577 if (fPixelRef->getFactory()) {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001578 buffer.writeInt(SERIALIZE_PIXELTYPE_REF_DATA);
scroggo@google.come5f48242013-02-25 21:47:41 +00001579 buffer.writeUInt(SkToU32(fPixelRefOffset));
djsollen@google.com5370cd92012-03-28 20:47:01 +00001580 buffer.writeFlattenable(fPixelRef);
1581 return;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001582 }
1583 // if we get here, we can't record the pixels
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001584 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001585 } else {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001586 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001587 }
1588}
1589
1590void SkBitmap::unflatten(SkFlattenableReadBuffer& buffer) {
1591 this->reset();
weita@google.comf9ab99a2009-05-03 18:23:30 +00001592
reed@android.com8a1c16f2008-12-17 15:59:43 +00001593 int width = buffer.readInt();
1594 int height = buffer.readInt();
1595 int rowBytes = buffer.readInt();
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001596 int config = buffer.readInt();
weita@google.comf9ab99a2009-05-03 18:23:30 +00001597
reed@android.com8a1c16f2008-12-17 15:59:43 +00001598 this->setConfig((Config)config, width, height, rowBytes);
1599 this->setIsOpaque(buffer.readBool());
weita@google.comf9ab99a2009-05-03 18:23:30 +00001600
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001601 int reftype = buffer.readInt();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001602 switch (reftype) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001603 case SERIALIZE_PIXELTYPE_REF_DATA: {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001604 size_t offset = buffer.readUInt();
1605 SkPixelRef* pr = buffer.readFlattenableT<SkPixelRef>();
reed@google.com82065d62011-02-07 15:30:46 +00001606 SkSafeUnref(this->setPixelRef(pr, offset));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001607 break;
1608 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001609 case SERIALIZE_PIXELTYPE_NONE:
1610 break;
1611 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +00001612 SkDEBUGFAIL("unrecognized pixeltype in serialized data");
reed@android.com8a1c16f2008-12-17 15:59:43 +00001613 sk_throw();
1614 }
1615}
1616
1617///////////////////////////////////////////////////////////////////////////////
1618
1619SkBitmap::RLEPixels::RLEPixels(int width, int height) {
1620 fHeight = height;
1621 fYPtrs = (uint8_t**)sk_malloc_throw(height * sizeof(uint8_t*));
reed@android.com4516f472009-06-29 16:25:36 +00001622 sk_bzero(fYPtrs, height * sizeof(uint8_t*));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001623}
1624
1625SkBitmap::RLEPixels::~RLEPixels() {
1626 sk_free(fYPtrs);
1627}
1628
1629///////////////////////////////////////////////////////////////////////////////
1630
1631#ifdef SK_DEBUG
1632void SkBitmap::validate() const {
1633 SkASSERT(fConfig < kConfigCount);
1634 SkASSERT(fRowBytes >= (unsigned)ComputeRowBytes((Config)fConfig, fWidth));
scroggo@google.com8e990eb2013-06-14 15:55:56 +00001635 uint8_t allFlags = kImageIsOpaque_Flag | kImageIsVolatile_Flag | kImageIsImmutable_Flag;
1636#ifdef SK_BUILD_FOR_ANDROID
1637 allFlags |= kHasHardwareMipMap_Flag;
1638#endif
1639 SkASSERT(fFlags <= allFlags);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001640 SkASSERT(fPixelLockCount >= 0);
1641 SkASSERT(NULL == fColorTable || (unsigned)fColorTable->getRefCnt() < 10000);
1642 SkASSERT((uint8_t)ComputeBytesPerPixel((Config)fConfig) == fBytesPerPixel);
1643
1644#if 0 // these asserts are not thread-correct, so disable for now
1645 if (fPixelRef) {
1646 if (fPixelLockCount > 0) {
reed@google.comff0da4f2012-05-17 13:14:52 +00001647 SkASSERT(fPixelRef->isLocked());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001648 } else {
1649 SkASSERT(NULL == fPixels);
1650 SkASSERT(NULL == fColorTable);
1651 }
1652 }
1653#endif
1654}
1655#endif
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001656
1657#ifdef SK_DEVELOPER
1658void SkBitmap::toString(SkString* str) const {
1659
1660 static const char* gConfigNames[kConfigCount] = {
edisonn@google.comafe397b2013-06-26 14:52:34 +00001661 "NONE", "A1", "A8", "INDEX8", "565", "4444", "8888"
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001662 };
1663
1664 str->appendf("bitmap: ((%d, %d) %s", this->width(), this->height(),
1665 gConfigNames[this->config()]);
1666
1667 str->append(" (");
1668 if (this->isOpaque()) {
1669 str->append("opaque");
1670 } else {
1671 str->append("transparent");
1672 }
1673 if (this->isImmutable()) {
1674 str->append(", immutable");
1675 } else {
1676 str->append(", not-immutable");
1677 }
1678 str->append(")");
1679
1680 SkPixelRef* pr = this->pixelRef();
1681 if (NULL == pr) {
1682 // show null or the explicit pixel address (rare)
1683 str->appendf(" pixels:%p", this->getPixels());
1684 } else {
1685 const char* uri = pr->getURI();
1686 if (NULL != uri) {
1687 str->appendf(" uri:\"%s\"", uri);
1688 } else {
1689 str->appendf(" pixelref:%p", pr);
1690 }
1691 }
1692
1693 str->append(")");
1694}
1695#endif