blob: 128726cb63d9198477afd698e377c6ee02cef6ed [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 {
djsollen@google.com7c6d2642013-08-06 12:19:38 +0000343 if (NULL != fPixelRef && 0 == sk_atomic_inc(&fPixelLockCount)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000344 fPixelRef->lockPixels();
345 this->updatePixelsFromRef();
346 }
347 SkDEBUGCODE(this->validate();)
348}
349
350void SkBitmap::unlockPixels() const {
351 SkASSERT(NULL == fPixelRef || fPixelLockCount > 0);
352
djsollen@google.com7c6d2642013-08-06 12:19:38 +0000353 if (NULL != fPixelRef && 1 == sk_atomic_dec(&fPixelLockCount)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000354 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;
skia.committer@gmail.coma6ff36b2013-06-29 07:03:21 +0000779
reed@google.com60d32352013-06-28 19:40:50 +0000780 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 }
skia.committer@gmail.coma6ff36b2013-06-29 07:03:21 +0000802
reed@google.com60d32352013-06-28 19:40:50 +0000803 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 // The remainder will be the x position, after we reverse get_sub_offset.
commit-bot@chromium.org2c86fbb2013-09-26 19:22:54 +0000915 SkTDivMod(offset, rowBytes, y, x);
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000916 switch (config) {
scroggo@google.coma2a31922012-12-07 19:14:45 +0000917 case SkBitmap::kA8_Config:
918 // Fall through.
919 case SkBitmap::kIndex8_Config:
920 // x is unmodified
921 break;
922
923 case SkBitmap::kRGB_565_Config:
924 // Fall through.
925 case SkBitmap::kARGB_4444_Config:
926 *x >>= 1;
927 break;
928
929 case SkBitmap::kARGB_8888_Config:
930 *x >>= 2;
931 break;
932
933 case SkBitmap::kNo_Config:
934 // Fall through.
935 case SkBitmap::kA1_Config:
936 // Fall through.
937 default:
938 return false;
939 }
940 return true;
941}
942
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000943static bool get_upper_left_from_offset(const SkBitmap& bm, int32_t* x, int32_t* y) {
944 return get_upper_left_from_offset(bm.config(), bm.pixelRefOffset(), bm.rowBytes(), x, y);
945}
946
reed@android.com8a1c16f2008-12-17 15:59:43 +0000947bool SkBitmap::extractSubset(SkBitmap* result, const SkIRect& subset) const {
948 SkDEBUGCODE(this->validate();)
949
djsollen@google.comc84b8332012-07-27 13:41:44 +0000950 if (NULL == result || NULL == fPixelRef) {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000951 return false; // no src pixels
952 }
953
954 SkIRect srcRect, r;
955 srcRect.set(0, 0, this->width(), this->height());
956 if (!r.intersect(srcRect, subset)) {
957 return false; // r is empty (i.e. no intersection)
958 }
959
scroggo@google.coma2a31922012-12-07 19:14:45 +0000960 if (fPixelRef->getTexture() != NULL) {
961 // Do a deep copy
962 SkPixelRef* pixelRef = fPixelRef->deepCopy(this->config(), &subset);
963 if (pixelRef != NULL) {
964 SkBitmap dst;
965 dst.setConfig(this->config(), subset.width(), subset.height());
966 dst.setIsVolatile(this->isVolatile());
967 dst.setIsOpaque(this->isOpaque());
968 dst.setPixelRef(pixelRef)->unref();
969 SkDEBUGCODE(dst.validate());
970 result->swap(dst);
971 return true;
972 }
973 }
974
scroggo@google.coma2a31922012-12-07 19:14:45 +0000975 // If the upper left of the rectangle was outside the bounds of this SkBitmap, we should have
976 // exited above.
977 SkASSERT(static_cast<unsigned>(r.fLeft) < static_cast<unsigned>(this->width()));
978 SkASSERT(static_cast<unsigned>(r.fTop) < static_cast<unsigned>(this->height()));
979
scroggo@google.com1b1bcc32013-05-21 20:31:23 +0000980 size_t offset = get_sub_offset(*this, r.fLeft, r.fTop);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000981 if (SUB_OFFSET_FAILURE == offset) {
982 return false; // config not supported
983 }
984
985 SkBitmap dst;
986 dst.setConfig(this->config(), r.width(), r.height(), this->rowBytes());
skyostil@google.com0eb75762012-01-16 10:45:53 +0000987 dst.setIsVolatile(this->isVolatile());
reed@google.com04685d22012-10-15 13:45:40 +0000988 dst.setIsOpaque(this->isOpaque());
reed@android.com8a1c16f2008-12-17 15:59:43 +0000989
990 if (fPixelRef) {
991 // share the pixelref with a custom offset
992 dst.setPixelRef(fPixelRef, fPixelRefOffset + offset);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000993 }
994 SkDEBUGCODE(dst.validate();)
995
996 // we know we're good, so commit to result
997 result->swap(dst);
998 return true;
999}
1000
1001///////////////////////////////////////////////////////////////////////////////
1002
1003#include "SkCanvas.h"
1004#include "SkPaint.h"
1005
reed@android.comfbaa88d2009-05-06 17:44:34 +00001006bool SkBitmap::canCopyTo(Config dstConfig) const {
1007 if (this->getConfig() == kNo_Config) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001008 return false;
1009 }
1010
reed@android.comfbaa88d2009-05-06 17:44:34 +00001011 bool sameConfigs = (this->config() == dstConfig);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001012 switch (dstConfig) {
1013 case kA8_Config:
reed@android.com8a1c16f2008-12-17 15:59:43 +00001014 case kRGB_565_Config:
1015 case kARGB_8888_Config:
1016 break;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001017 case kA1_Config:
1018 case kIndex8_Config:
1019 if (!sameConfigs) {
1020 return false;
1021 }
1022 break;
scroggo@google.com8dc8bc52013-08-07 19:16:05 +00001023 case kARGB_4444_Config:
1024 return sameConfigs || kARGB_8888_Config == this->config();
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 }
scroggo@google.com8dc8bc52013-08-07 19:16:05 +00001112 } else if (SkBitmap::kARGB_4444_Config == dstConfig
1113 && SkBitmap::kARGB_8888_Config == src->config()) {
1114 SkASSERT(src->height() == tmpDst.height());
1115 SkASSERT(src->width() == tmpDst.width());
1116 for (int y = 0; y < src->height(); ++y) {
1117 SkPMColor16* SK_RESTRICT dstRow = (SkPMColor16*) tmpDst.getAddr16(0, y);
1118 SkPMColor* SK_RESTRICT srcRow = (SkPMColor*) src->getAddr32(0, y);
1119 DITHER_4444_SCAN(y);
1120 for (int x = 0; x < src->width(); ++x) {
1121 dstRow[x] = SkDitherARGB32To4444(srcRow[x],
1122 DITHER_VALUE(x));
1123 }
1124 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001125 } else {
1126 // if the src has alpha, we have to clear the dst first
reed@google.com50dfa012011-04-01 19:05:36 +00001127 if (!src->isOpaque()) {
junov@google.comdbfac8a2012-12-06 21:47:40 +00001128 tmpDst.eraseColor(SK_ColorTRANSPARENT);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001129 }
1130
reed@google.com50dfa012011-04-01 19:05:36 +00001131 SkCanvas canvas(tmpDst);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001132 SkPaint paint;
1133
1134 paint.setDither(true);
reed@google.com50dfa012011-04-01 19:05:36 +00001135 canvas.drawBitmap(*src, 0, 0, &paint);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001136 }
1137
reed@google.com50dfa012011-04-01 19:05:36 +00001138 tmpDst.setIsOpaque(src->isOpaque());
reed@android.comcafc9f92009-08-22 03:44:57 +00001139
reed@google.com50dfa012011-04-01 19:05:36 +00001140 dst->swap(tmpDst);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001141 return true;
1142}
1143
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001144bool SkBitmap::deepCopyTo(SkBitmap* dst, Config dstConfig) const {
1145 if (!this->canCopyTo(dstConfig)) {
1146 return false;
1147 }
1148
1149 // If we have a PixelRef, and it supports deep copy, use it.
1150 // Currently supported only by texture-backed bitmaps.
1151 if (fPixelRef) {
1152 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstConfig);
1153 if (pixelRef) {
scroggo@google.coma2a31922012-12-07 19:14:45 +00001154 uint32_t rowBytes;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001155 if (dstConfig == fConfig) {
1156 pixelRef->fGenerationID = fPixelRef->getGenerationID();
scroggo@google.coma2a31922012-12-07 19:14:45 +00001157 // Use the same rowBytes as the original.
1158 rowBytes = fRowBytes;
1159 } else {
1160 // With the new config, an appropriate fRowBytes will be computed by setConfig.
1161 rowBytes = 0;
scroggo@google.comd5764e82012-08-22 15:00:05 +00001162 }
scroggo@google.coma2a31922012-12-07 19:14:45 +00001163 dst->setConfig(dstConfig, fWidth, fHeight, rowBytes);
1164
1165 size_t pixelRefOffset;
1166 if (0 == fPixelRefOffset || dstConfig == fConfig) {
1167 // Use the same offset as the original.
1168 pixelRefOffset = fPixelRefOffset;
1169 } else {
1170 // Find the correct offset in the new config. This needs to be done after calling
1171 // setConfig so dst's fConfig and fRowBytes have been set properly.
scroggo@google.come5f48242013-02-25 21:47:41 +00001172 int32_t x, y;
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001173 if (!get_upper_left_from_offset(*this, &x, &y)) {
scroggo@google.coma2a31922012-12-07 19:14:45 +00001174 return false;
1175 }
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001176 pixelRefOffset = get_sub_offset(*dst, x, y);
scroggo@google.coma2a31922012-12-07 19:14:45 +00001177 if (SUB_OFFSET_FAILURE == pixelRefOffset) {
1178 return false;
1179 }
1180 }
1181 dst->setPixelRef(pixelRef, pixelRefOffset)->unref();
senorblanco@chromium.orgef843cd2011-12-02 19:11:17 +00001182 return true;
1183 }
1184 }
1185
1186 if (this->getTexture()) {
1187 return false;
1188 } else {
1189 return this->copyTo(dst, dstConfig, NULL);
1190 }
1191}
1192
reed@android.com8a1c16f2008-12-17 15:59:43 +00001193///////////////////////////////////////////////////////////////////////////////
1194///////////////////////////////////////////////////////////////////////////////
1195
1196static void downsampleby2_proc32(SkBitmap* dst, int x, int y,
1197 const SkBitmap& src) {
1198 x <<= 1;
1199 y <<= 1;
1200 const SkPMColor* p = src.getAddr32(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001201 const SkPMColor* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001202 SkPMColor c, ag, rb;
1203
1204 c = *p; ag = (c >> 8) & 0xFF00FF; rb = c & 0xFF00FF;
1205 if (x < src.width() - 1) {
1206 p += 1;
1207 }
1208 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1209
reed@android.com829c83c2009-06-08 12:05:31 +00001210 p = baseP;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001211 if (y < src.height() - 1) {
reed@android.com829c83c2009-06-08 12:05:31 +00001212 p += src.rowBytes() >> 2;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001213 }
1214 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1215 if (x < src.width() - 1) {
1216 p += 1;
1217 }
1218 c = *p; ag += (c >> 8) & 0xFF00FF; rb += c & 0xFF00FF;
1219
1220 *dst->getAddr32(x >> 1, y >> 1) =
1221 ((rb >> 2) & 0xFF00FF) | ((ag << 6) & 0xFF00FF00);
1222}
1223
1224static inline uint32_t expand16(U16CPU c) {
1225 return (c & ~SK_G16_MASK_IN_PLACE) | ((c & SK_G16_MASK_IN_PLACE) << 16);
1226}
1227
1228// returns dirt in the top 16bits, but we don't care, since we only
1229// store the low 16bits.
1230static inline U16CPU pack16(uint32_t c) {
1231 return (c & ~SK_G16_MASK_IN_PLACE) | ((c >> 16) & SK_G16_MASK_IN_PLACE);
1232}
1233
1234static void downsampleby2_proc16(SkBitmap* dst, int x, int y,
1235 const SkBitmap& src) {
1236 x <<= 1;
1237 y <<= 1;
1238 const uint16_t* p = src.getAddr16(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001239 const uint16_t* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001240 SkPMColor c;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001241
reed@android.com8a1c16f2008-12-17 15:59:43 +00001242 c = expand16(*p);
reed@android.com829c83c2009-06-08 12:05:31 +00001243 if (x < src.width() - 1) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001244 p += 1;
1245 }
1246 c += expand16(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001247
reed@android.com829c83c2009-06-08 12:05:31 +00001248 p = baseP;
1249 if (y < src.height() - 1) {
1250 p += src.rowBytes() >> 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001251 }
1252 c += expand16(*p);
reed@android.com829c83c2009-06-08 12:05:31 +00001253 if (x < src.width() - 1) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001254 p += 1;
1255 }
1256 c += expand16(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001257
reed@android.com8a1c16f2008-12-17 15:59:43 +00001258 *dst->getAddr16(x >> 1, y >> 1) = (uint16_t)pack16(c >> 2);
1259}
1260
1261static uint32_t expand4444(U16CPU c) {
1262 return (c & 0xF0F) | ((c & ~0xF0F) << 12);
1263}
1264
1265static U16CPU collaps4444(uint32_t c) {
1266 return (c & 0xF0F) | ((c >> 12) & ~0xF0F);
1267}
1268
1269static void downsampleby2_proc4444(SkBitmap* dst, int x, int y,
1270 const SkBitmap& src) {
1271 x <<= 1;
1272 y <<= 1;
1273 const uint16_t* p = src.getAddr16(x, y);
reed@android.com829c83c2009-06-08 12:05:31 +00001274 const uint16_t* baseP = p;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001275 uint32_t c;
weita@google.comf9ab99a2009-05-03 18:23:30 +00001276
reed@android.com8a1c16f2008-12-17 15:59:43 +00001277 c = expand4444(*p);
1278 if (x < src.width() - 1) {
1279 p += 1;
1280 }
1281 c += expand4444(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001282
reed@android.com829c83c2009-06-08 12:05:31 +00001283 p = baseP;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001284 if (y < src.height() - 1) {
reed@android.com829c83c2009-06-08 12:05:31 +00001285 p += src.rowBytes() >> 1;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001286 }
1287 c += expand4444(*p);
1288 if (x < src.width() - 1) {
1289 p += 1;
1290 }
1291 c += expand4444(*p);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001292
reed@android.com8a1c16f2008-12-17 15:59:43 +00001293 *dst->getAddr16(x >> 1, y >> 1) = (uint16_t)collaps4444(c >> 2);
1294}
1295
1296void SkBitmap::buildMipMap(bool forceRebuild) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001297 if (forceRebuild)
1298 this->freeMipMap();
1299 else if (fMipMap)
1300 return; // we're already built
1301
1302 SkASSERT(NULL == fMipMap);
1303
1304 void (*proc)(SkBitmap* dst, int x, int y, const SkBitmap& src);
1305
1306 const SkBitmap::Config config = this->getConfig();
1307
1308 switch (config) {
1309 case kARGB_8888_Config:
1310 proc = downsampleby2_proc32;
1311 break;
1312 case kRGB_565_Config:
1313 proc = downsampleby2_proc16;
1314 break;
1315 case kARGB_4444_Config:
1316 proc = downsampleby2_proc4444;
1317 break;
1318 case kIndex8_Config:
1319 case kA8_Config:
1320 default:
1321 return; // don't build mipmaps for these configs
1322 }
reed@android.com89bb83a2009-05-29 21:30:42 +00001323
reed@android.com149e2f62009-05-22 14:39:03 +00001324 SkAutoLockPixels alp(*this);
1325 if (!this->readyToDraw()) {
1326 return;
1327 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001328
1329 // whip through our loop to compute the exact size needed
1330 size_t size = 0;
1331 int maxLevels = 0;
1332 {
reed@android.com149e2f62009-05-22 14:39:03 +00001333 int width = this->width();
1334 int height = this->height();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001335 for (;;) {
1336 width >>= 1;
1337 height >>= 1;
1338 if (0 == width || 0 == height) {
1339 break;
1340 }
1341 size += ComputeRowBytes(config, width) * height;
1342 maxLevels += 1;
1343 }
1344 }
reed@android.com89bb83a2009-05-29 21:30:42 +00001345
reed@android.com149e2f62009-05-22 14:39:03 +00001346 // nothing to build
reed@android.com8a1c16f2008-12-17 15:59:43 +00001347 if (0 == maxLevels) {
1348 return;
1349 }
1350
reed@android.com149e2f62009-05-22 14:39:03 +00001351 SkBitmap srcBM(*this);
1352 srcBM.lockPixels();
1353 if (!srcBM.readyToDraw()) {
1354 return;
1355 }
1356
1357 MipMap* mm = MipMap::Alloc(maxLevels, size);
1358 if (NULL == mm) {
1359 return;
1360 }
1361
reed@android.com8a1c16f2008-12-17 15:59:43 +00001362 MipLevel* level = mm->levels();
1363 uint8_t* addr = (uint8_t*)mm->pixels();
reed@android.com149e2f62009-05-22 14:39:03 +00001364 int width = this->width();
1365 int height = this->height();
scroggo@google.come5f48242013-02-25 21:47:41 +00001366 uint32_t rowBytes;
reed@android.com149e2f62009-05-22 14:39:03 +00001367 SkBitmap dstBM;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001368
1369 for (int i = 0; i < maxLevels; i++) {
1370 width >>= 1;
1371 height >>= 1;
scroggo@google.come5f48242013-02-25 21:47:41 +00001372 rowBytes = SkToU32(ComputeRowBytes(config, width));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001373
1374 level[i].fPixels = addr;
reed@android.comf459a492009-03-27 12:33:50 +00001375 level[i].fWidth = width;
1376 level[i].fHeight = height;
reed@android.com49f0ff22009-03-19 21:52:42 +00001377 level[i].fRowBytes = rowBytes;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001378
1379 dstBM.setConfig(config, width, height, rowBytes);
1380 dstBM.setPixels(addr);
weita@google.comf9ab99a2009-05-03 18:23:30 +00001381
bungeman@google.com7cf0e9e2012-07-25 16:09:10 +00001382 srcBM.lockPixels();
reed@android.com149e2f62009-05-22 14:39:03 +00001383 for (int y = 0; y < height; y++) {
1384 for (int x = 0; x < width; x++) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001385 proc(&dstBM, x, y, srcBM);
1386 }
1387 }
bungeman@google.com7cf0e9e2012-07-25 16:09:10 +00001388 srcBM.unlockPixels();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001389
1390 srcBM = dstBM;
1391 addr += height * rowBytes;
1392 }
1393 SkASSERT(addr == (uint8_t*)mm->pixels() + size);
1394 fMipMap = mm;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001395}
1396
1397bool SkBitmap::hasMipMap() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001398 return fMipMap != NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001399}
1400
1401int SkBitmap::extractMipLevel(SkBitmap* dst, SkFixed sx, SkFixed sy) {
reed@android.com83f7bc32009-07-17 02:42:41 +00001402 if (NULL == fMipMap) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001403 return 0;
reed@android.com83f7bc32009-07-17 02:42:41 +00001404 }
weita@google.comf9ab99a2009-05-03 18:23:30 +00001405
reed@android.com8a1c16f2008-12-17 15:59:43 +00001406 int level = ComputeMipLevel(sx, sy) >> 16;
1407 SkASSERT(level >= 0);
1408 if (level <= 0) {
1409 return 0;
1410 }
1411
1412 if (level >= fMipMap->fLevelCount) {
1413 level = fMipMap->fLevelCount - 1;
1414 }
1415 if (dst) {
1416 const MipLevel& mip = fMipMap->levels()[level - 1];
1417 dst->setConfig((SkBitmap::Config)this->config(),
1418 mip.fWidth, mip.fHeight, mip.fRowBytes);
1419 dst->setPixels(mip.fPixels);
1420 }
1421 return level;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001422}
1423
1424SkFixed SkBitmap::ComputeMipLevel(SkFixed sx, SkFixed sy) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001425 sx = SkAbs32(sx);
1426 sy = SkAbs32(sy);
1427 if (sx < sy) {
1428 sx = sy;
1429 }
1430 if (sx < SK_Fixed1) {
1431 return 0;
1432 }
1433 int clz = SkCLZ(sx);
1434 SkASSERT(clz >= 1 && clz <= 15);
1435 return SkIntToFixed(15 - clz) + ((unsigned)(sx << (clz + 1)) >> 16);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001436}
1437
1438///////////////////////////////////////////////////////////////////////////////
1439
tomhudson@google.coma87cd2a2011-06-15 16:50:27 +00001440static bool GetBitmapAlpha(const SkBitmap& src, uint8_t* SK_RESTRICT alpha,
reed@android.com8a1c16f2008-12-17 15:59:43 +00001441 int alphaRowBytes) {
1442 SkASSERT(alpha != NULL);
1443 SkASSERT(alphaRowBytes >= src.width());
1444
1445 SkBitmap::Config config = src.getConfig();
1446 int w = src.width();
1447 int h = src.height();
scroggo@google.come5f48242013-02-25 21:47:41 +00001448 size_t rb = src.rowBytes();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001449
reed@android.com1cdcb512009-08-24 19:11:00 +00001450 SkAutoLockPixels alp(src);
1451 if (!src.readyToDraw()) {
1452 // zero out the alpha buffer and return
1453 while (--h >= 0) {
1454 memset(alpha, 0, w);
1455 alpha += alphaRowBytes;
1456 }
1457 return false;
1458 }
reed@google.com82065d62011-02-07 15:30:46 +00001459
reed@android.com8a1c16f2008-12-17 15:59:43 +00001460 if (SkBitmap::kA8_Config == config && !src.isOpaque()) {
1461 const uint8_t* s = src.getAddr8(0, 0);
1462 while (--h >= 0) {
1463 memcpy(alpha, s, w);
1464 s += rb;
1465 alpha += alphaRowBytes;
1466 }
1467 } else if (SkBitmap::kARGB_8888_Config == config && !src.isOpaque()) {
1468 const SkPMColor* SK_RESTRICT s = src.getAddr32(0, 0);
1469 while (--h >= 0) {
1470 for (int x = 0; x < w; x++) {
1471 alpha[x] = SkGetPackedA32(s[x]);
1472 }
1473 s = (const SkPMColor*)((const char*)s + rb);
1474 alpha += alphaRowBytes;
1475 }
1476 } else if (SkBitmap::kARGB_4444_Config == config && !src.isOpaque()) {
1477 const SkPMColor16* SK_RESTRICT s = src.getAddr16(0, 0);
1478 while (--h >= 0) {
1479 for (int x = 0; x < w; x++) {
1480 alpha[x] = SkPacked4444ToA32(s[x]);
1481 }
1482 s = (const SkPMColor16*)((const char*)s + rb);
1483 alpha += alphaRowBytes;
1484 }
1485 } else if (SkBitmap::kIndex8_Config == config && !src.isOpaque()) {
1486 SkColorTable* ct = src.getColorTable();
1487 if (ct) {
1488 const SkPMColor* SK_RESTRICT table = ct->lockColors();
1489 const uint8_t* SK_RESTRICT s = src.getAddr8(0, 0);
1490 while (--h >= 0) {
1491 for (int x = 0; x < w; x++) {
1492 alpha[x] = SkGetPackedA32(table[s[x]]);
1493 }
1494 s += rb;
1495 alpha += alphaRowBytes;
1496 }
1497 ct->unlockColors(false);
1498 }
1499 } else { // src is opaque, so just fill alpha[] with 0xFF
1500 memset(alpha, 0xFF, h * alphaRowBytes);
1501 }
reed@android.com1cdcb512009-08-24 19:11:00 +00001502 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001503}
1504
1505#include "SkPaint.h"
1506#include "SkMaskFilter.h"
1507#include "SkMatrix.h"
1508
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001509bool SkBitmap::extractAlpha(SkBitmap* dst, const SkPaint* paint,
djsollen@google.com57f49692011-02-23 20:46:31 +00001510 Allocator *allocator, SkIPoint* offset) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001511 SkDEBUGCODE(this->validate();)
1512
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001513 SkBitmap tmpBitmap;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001514 SkMatrix identity;
1515 SkMask srcM, dstM;
1516
1517 srcM.fBounds.set(0, 0, this->width(), this->height());
1518 srcM.fRowBytes = SkAlign4(this->width());
1519 srcM.fFormat = SkMask::kA8_Format;
1520
1521 SkMaskFilter* filter = paint ? paint->getMaskFilter() : NULL;
1522
1523 // compute our (larger?) dst bounds if we have a filter
1524 if (NULL != filter) {
1525 identity.reset();
1526 srcM.fImage = NULL;
1527 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1528 goto NO_FILTER_CASE;
1529 }
1530 dstM.fRowBytes = SkAlign4(dstM.fBounds.width());
1531 } else {
1532 NO_FILTER_CASE:
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001533 tmpBitmap.setConfig(SkBitmap::kA8_Config, this->width(), this->height(),
reed@android.com8a1c16f2008-12-17 15:59:43 +00001534 srcM.fRowBytes);
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001535 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1536 // Allocation of pixels for alpha bitmap failed.
1537 SkDebugf("extractAlpha failed to allocate (%d,%d) alpha bitmap\n",
1538 tmpBitmap.width(), tmpBitmap.height());
1539 return false;
1540 }
1541 GetBitmapAlpha(*this, tmpBitmap.getAddr8(0, 0), srcM.fRowBytes);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001542 if (offset) {
1543 offset->set(0, 0);
1544 }
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001545 tmpBitmap.swap(*dst);
1546 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001547 }
bungeman@google.com02f55842011-10-04 21:25:00 +00001548 srcM.fImage = SkMask::AllocImage(srcM.computeImageSize());
1549 SkAutoMaskFreeImage srcCleanup(srcM.fImage);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001550
1551 GetBitmapAlpha(*this, srcM.fImage, srcM.fRowBytes);
1552 if (!filter->filterMask(&dstM, srcM, identity, NULL)) {
1553 goto NO_FILTER_CASE;
1554 }
bungeman@google.com02f55842011-10-04 21:25:00 +00001555 SkAutoMaskFreeImage dstCleanup(dstM.fImage);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001556
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001557 tmpBitmap.setConfig(SkBitmap::kA8_Config, dstM.fBounds.width(),
reed@android.com8a1c16f2008-12-17 15:59:43 +00001558 dstM.fBounds.height(), dstM.fRowBytes);
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001559 if (!tmpBitmap.allocPixels(allocator, NULL)) {
1560 // Allocation of pixels for alpha bitmap failed.
1561 SkDebugf("extractAlpha failed to allocate (%d,%d) alpha bitmap\n",
1562 tmpBitmap.width(), tmpBitmap.height());
1563 return false;
1564 }
1565 memcpy(tmpBitmap.getPixels(), dstM.fImage, dstM.computeImageSize());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001566 if (offset) {
1567 offset->set(dstM.fBounds.fLeft, dstM.fBounds.fTop);
1568 }
djsollen@google.comcd9d69b2011-03-14 20:30:14 +00001569 SkDEBUGCODE(tmpBitmap.validate();)
1570
1571 tmpBitmap.swap(*dst);
1572 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001573}
1574
1575///////////////////////////////////////////////////////////////////////////////
1576
1577enum {
1578 SERIALIZE_PIXELTYPE_NONE,
djsollen@google.com21830d92012-08-07 19:49:41 +00001579 SERIALIZE_PIXELTYPE_REF_DATA
reed@android.com8a1c16f2008-12-17 15:59:43 +00001580};
1581
reed@android.com8a1c16f2008-12-17 15:59:43 +00001582void SkBitmap::flatten(SkFlattenableWriteBuffer& buffer) const {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001583 buffer.writeInt(fWidth);
1584 buffer.writeInt(fHeight);
1585 buffer.writeInt(fRowBytes);
1586 buffer.writeInt(fConfig);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001587 buffer.writeBool(this->isOpaque());
weita@google.comf9ab99a2009-05-03 18:23:30 +00001588
reed@android.com8a1c16f2008-12-17 15:59:43 +00001589 if (fPixelRef) {
djsollen@google.com5370cd92012-03-28 20:47:01 +00001590 if (fPixelRef->getFactory()) {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001591 buffer.writeInt(SERIALIZE_PIXELTYPE_REF_DATA);
scroggo@google.come5f48242013-02-25 21:47:41 +00001592 buffer.writeUInt(SkToU32(fPixelRefOffset));
djsollen@google.com5370cd92012-03-28 20:47:01 +00001593 buffer.writeFlattenable(fPixelRef);
1594 return;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001595 }
1596 // if we get here, we can't record the pixels
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001597 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001598 } else {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001599 buffer.writeInt(SERIALIZE_PIXELTYPE_NONE);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001600 }
1601}
1602
1603void SkBitmap::unflatten(SkFlattenableReadBuffer& buffer) {
1604 this->reset();
weita@google.comf9ab99a2009-05-03 18:23:30 +00001605
reed@android.com8a1c16f2008-12-17 15:59:43 +00001606 int width = buffer.readInt();
1607 int height = buffer.readInt();
1608 int rowBytes = buffer.readInt();
robertphillips@google.com24ddde92013-09-16 14:04:05 +00001609 int config = buffer.readInt();
weita@google.comf9ab99a2009-05-03 18:23:30 +00001610
robertphillips@google.com24ddde92013-09-16 14:04:05 +00001611 this->setConfig((Config)config, width, height, rowBytes);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001612 this->setIsOpaque(buffer.readBool());
weita@google.comf9ab99a2009-05-03 18:23:30 +00001613
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001614 int reftype = buffer.readInt();
reed@android.com8a1c16f2008-12-17 15:59:43 +00001615 switch (reftype) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001616 case SERIALIZE_PIXELTYPE_REF_DATA: {
djsollen@google.comc73dd5c2012-08-07 15:54:32 +00001617 size_t offset = buffer.readUInt();
1618 SkPixelRef* pr = buffer.readFlattenableT<SkPixelRef>();
reed@google.com82065d62011-02-07 15:30:46 +00001619 SkSafeUnref(this->setPixelRef(pr, offset));
reed@android.com8a1c16f2008-12-17 15:59:43 +00001620 break;
1621 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001622 case SERIALIZE_PIXELTYPE_NONE:
1623 break;
1624 default:
tomhudson@google.com0c00f212011-12-28 14:59:50 +00001625 SkDEBUGFAIL("unrecognized pixeltype in serialized data");
reed@android.com8a1c16f2008-12-17 15:59:43 +00001626 sk_throw();
1627 }
1628}
1629
1630///////////////////////////////////////////////////////////////////////////////
1631
1632SkBitmap::RLEPixels::RLEPixels(int width, int height) {
1633 fHeight = height;
robertphillips@google.comc8fb9982013-09-22 20:18:07 +00001634 fYPtrs = (uint8_t**)sk_malloc_throw(height * sizeof(uint8_t*));
1635 sk_bzero(fYPtrs, 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 {
1646 SkASSERT(fConfig < kConfigCount);
1647 SkASSERT(fRowBytes >= (unsigned)ComputeRowBytes((Config)fConfig, fWidth));
scroggo@google.com8e990eb2013-06-14 15:55:56 +00001648 uint8_t allFlags = kImageIsOpaque_Flag | kImageIsVolatile_Flag | kImageIsImmutable_Flag;
1649#ifdef SK_BUILD_FOR_ANDROID
1650 allFlags |= kHasHardwareMipMap_Flag;
1651#endif
1652 SkASSERT(fFlags <= allFlags);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001653 SkASSERT(fPixelLockCount >= 0);
1654 SkASSERT(NULL == fColorTable || (unsigned)fColorTable->getRefCnt() < 10000);
1655 SkASSERT((uint8_t)ComputeBytesPerPixel((Config)fConfig) == fBytesPerPixel);
1656
1657#if 0 // these asserts are not thread-correct, so disable for now
1658 if (fPixelRef) {
1659 if (fPixelLockCount > 0) {
reed@google.comff0da4f2012-05-17 13:14:52 +00001660 SkASSERT(fPixelRef->isLocked());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001661 } else {
1662 SkASSERT(NULL == fPixels);
1663 SkASSERT(NULL == fColorTable);
1664 }
1665 }
1666#endif
1667}
1668#endif
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001669
1670#ifdef SK_DEVELOPER
1671void SkBitmap::toString(SkString* str) const {
1672
1673 static const char* gConfigNames[kConfigCount] = {
edisonn@google.comafe397b2013-06-26 14:52:34 +00001674 "NONE", "A1", "A8", "INDEX8", "565", "4444", "8888"
robertphillips@google.com76f9e932013-01-15 20:17:47 +00001675 };
1676
1677 str->appendf("bitmap: ((%d, %d) %s", this->width(), this->height(),
1678 gConfigNames[this->config()]);
1679
1680 str->append(" (");
1681 if (this->isOpaque()) {
1682 str->append("opaque");
1683 } else {
1684 str->append("transparent");
1685 }
1686 if (this->isImmutable()) {
1687 str->append(", immutable");
1688 } else {
1689 str->append(", not-immutable");
1690 }
1691 str->append(")");
1692
1693 SkPixelRef* pr = this->pixelRef();
1694 if (NULL == pr) {
1695 // show null or the explicit pixel address (rare)
1696 str->appendf(" pixels:%p", this->getPixels());
1697 } else {
1698 const char* uri = pr->getURI();
1699 if (NULL != uri) {
1700 str->appendf(" uri:\"%s\"", uri);
1701 } else {
1702 str->appendf(" pixelref:%p", pr);
1703 }
1704 }
1705
1706 str->append(")");
1707}
1708#endif