blob: ccfdd27b1cb82cab885098ca458c2f5ffd07cfa9 [file] [log] [blame]
reed@google.comc9062042012-07-30 18:06:00 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkSurface_Base.h"
9#include "SkImagePriv.h"
10#include "SkCanvas.h"
reed@google.com97af1a62012-08-28 12:19:02 +000011#include "SkDevice.h"
reed@google.comc9062042012-07-30 18:06:00 +000012#include "SkMallocPixelRef.h"
13
14static const size_t kIgnoreRowBytesValue = (size_t)~0;
15
16class SkSurface_Raster : public SkSurface_Base {
17public:
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000018 static bool Valid(const SkImage::Info&, size_t rb = kIgnoreRowBytesValue);
reed@google.comc9062042012-07-30 18:06:00 +000019
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000020 SkSurface_Raster(const SkImage::Info&, void*, size_t rb);
21 SkSurface_Raster(const SkImage::Info&, SkPixelRef*, size_t rb);
reed@google.comc9062042012-07-30 18:06:00 +000022
23 virtual SkCanvas* onNewCanvas() SK_OVERRIDE;
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000024 virtual SkSurface* onNewSurface(const SkImage::Info&) SK_OVERRIDE;
junov@chromium.org5ee449a2013-04-12 20:20:50 +000025 virtual SkImage* onNewImageSnapshot() SK_OVERRIDE;
reed@google.comc9062042012-07-30 18:06:00 +000026 virtual void onDraw(SkCanvas*, SkScalar x, SkScalar y,
27 const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +000028 virtual void onCopyOnWrite(ContentChangeMode) SK_OVERRIDE;
reed@google.comc9062042012-07-30 18:06:00 +000029
30private:
31 SkBitmap fBitmap;
32 bool fWeOwnThePixels;
33
34 typedef SkSurface_Base INHERITED;
35};
36
37///////////////////////////////////////////////////////////////////////////////
38
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000039bool SkSurface_Raster::Valid(const SkImage::Info& info, size_t rowBytes) {
reed@google.comc9062042012-07-30 18:06:00 +000040 static const size_t kMaxTotalSize = SK_MaxS32;
41
42 bool isOpaque;
43 SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
44
45 int shift = 0;
46 switch (config) {
47 case SkBitmap::kA8_Config:
48 shift = 0;
49 break;
50 case SkBitmap::kRGB_565_Config:
51 shift = 1;
52 break;
53 case SkBitmap::kARGB_8888_Config:
54 shift = 2;
55 break;
56 default:
57 return false;
58 }
59
60 // TODO: examine colorspace
61
62 if (kIgnoreRowBytesValue == rowBytes) {
63 return true;
64 }
65
66 uint64_t minRB = (uint64_t)info.fWidth << shift;
67 if (minRB > rowBytes) {
68 return false;
69 }
70
71 size_t alignedRowBytes = rowBytes >> shift << shift;
72 if (alignedRowBytes != rowBytes) {
73 return false;
74 }
75
76 uint64_t size = (uint64_t)info.fHeight * rowBytes;
77 if (size > kMaxTotalSize) {
78 return false;
79 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000080
reed@google.comc9062042012-07-30 18:06:00 +000081 return true;
82}
83
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000084SkSurface_Raster::SkSurface_Raster(const SkImage::Info& info, void* pixels, size_t rb)
reed@google.comc9062042012-07-30 18:06:00 +000085 : INHERITED(info.fWidth, info.fHeight) {
86 bool isOpaque;
87 SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000088
reed@google.comc9062042012-07-30 18:06:00 +000089 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
90 fBitmap.setPixels(pixels);
91 fBitmap.setIsOpaque(isOpaque);
reed@google.com97af1a62012-08-28 12:19:02 +000092 fWeOwnThePixels = false; // We are "Direct"
reed@google.comc9062042012-07-30 18:06:00 +000093}
94
mike@reedtribe.orgb9476252012-11-15 02:37:45 +000095SkSurface_Raster::SkSurface_Raster(const SkImage::Info& info, SkPixelRef* pr, size_t rb)
reed@google.comc9062042012-07-30 18:06:00 +000096 : INHERITED(info.fWidth, info.fHeight) {
97 bool isOpaque;
98 SkBitmap::Config config = SkImageInfoToBitmapConfig(info, &isOpaque);
99
100 fBitmap.setConfig(config, info.fWidth, info.fHeight, rb);
101 fBitmap.setPixelRef(pr);
102 fBitmap.setIsOpaque(isOpaque);
103 fWeOwnThePixels = true;
104
105 if (!isOpaque) {
junov@google.comdbfac8a2012-12-06 21:47:40 +0000106 fBitmap.eraseColor(SK_ColorTRANSPARENT);
reed@google.comc9062042012-07-30 18:06:00 +0000107 }
108}
109
110SkCanvas* SkSurface_Raster::onNewCanvas() {
111 return SkNEW_ARGS(SkCanvas, (fBitmap));
112}
113
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000114SkSurface* SkSurface_Raster::onNewSurface(const SkImage::Info& info) {
115 return SkSurface::NewRaster(info);
reed@google.comc9062042012-07-30 18:06:00 +0000116}
117
reed@google.comc9062042012-07-30 18:06:00 +0000118void SkSurface_Raster::onDraw(SkCanvas* canvas, SkScalar x, SkScalar y,
119 const SkPaint* paint) {
120 canvas->drawBitmap(fBitmap, x, y, paint);
121}
122
junov@chromium.org5ee449a2013-04-12 20:20:50 +0000123SkImage* SkSurface_Raster::onNewImageSnapshot() {
reed@google.com97af1a62012-08-28 12:19:02 +0000124 return SkNewImageFromBitmap(fBitmap, fWeOwnThePixels);
125}
126
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000127void SkSurface_Raster::onCopyOnWrite(ContentChangeMode mode) {
reed@google.com97af1a62012-08-28 12:19:02 +0000128 // are we sharing pixelrefs with the image?
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000129 SkASSERT(NULL != this->getCachedImage());
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000130 if (SkBitmapImageGetPixelRef(this->getCachedImage()) == fBitmap.pixelRef()) {
reed@google.com97af1a62012-08-28 12:19:02 +0000131 SkASSERT(fWeOwnThePixels);
commit-bot@chromium.orgc4c98702013-04-22 14:28:01 +0000132 if (kDiscard_ContentChangeMode == mode) {
133 fBitmap.setPixelRef(NULL, 0);
134 fBitmap.allocPixels();
135 } else {
136 SkBitmap prev(fBitmap);
137 prev.deepCopyTo(&fBitmap, prev.config());
138 }
reed@google.com97af1a62012-08-28 12:19:02 +0000139 // Now fBitmap is a deep copy of itself (and therefore different from
140 // what is being used by the image. Next we update the canvas to use
141 // this as its backend, so we can't modify the image's pixels anymore.
junov@chromium.orgacea3ef2013-04-16 19:41:09 +0000142 SkASSERT(NULL != this->getCachedCanvas());
143 this->getCachedCanvas()->getDevice()->replaceBitmapBackendForRasterSurface(fBitmap);
reed@google.com97af1a62012-08-28 12:19:02 +0000144 }
145}
146
reed@google.comc9062042012-07-30 18:06:00 +0000147///////////////////////////////////////////////////////////////////////////////
148
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000149SkSurface* SkSurface::NewRasterDirect(const SkImage::Info& info, void* pixels, size_t rowBytes) {
150 if (!SkSurface_Raster::Valid(info, rowBytes)) {
reed@google.comc9062042012-07-30 18:06:00 +0000151 return NULL;
152 }
153 if (NULL == pixels) {
154 return NULL;
155 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000156
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000157 return SkNEW_ARGS(SkSurface_Raster, (info, pixels, rowBytes));
reed@google.comc9062042012-07-30 18:06:00 +0000158}
159
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000160SkSurface* SkSurface::NewRaster(const SkImage::Info& info) {
161 if (!SkSurface_Raster::Valid(info)) {
reed@google.comc9062042012-07-30 18:06:00 +0000162 return NULL;
163 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000164
reed@google.comc9062042012-07-30 18:06:00 +0000165 static const size_t kMaxTotalSize = SK_MaxS32;
166 size_t rowBytes = SkImageMinRowBytes(info);
167 uint64_t size64 = (uint64_t)info.fHeight * rowBytes;
168 if (size64 > kMaxTotalSize) {
169 return NULL;
170 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000171
reed@google.comc9062042012-07-30 18:06:00 +0000172 size_t size = (size_t)size64;
173 void* pixels = sk_malloc_throw(size);
174 if (NULL == pixels) {
175 return NULL;
176 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000177
reed@google.comc9062042012-07-30 18:06:00 +0000178 SkAutoTUnref<SkPixelRef> pr(SkNEW_ARGS(SkMallocPixelRef, (pixels, size, NULL, true)));
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000179 return SkNEW_ARGS(SkSurface_Raster, (info, pr, rowBytes));
reed@google.comc9062042012-07-30 18:06:00 +0000180}