blob: a2d6da131e2b75f3ae1b8b2c95bbb1d8156615ac [file] [log] [blame]
reed@google.comfe7b1ed2012-11-29 21:00:39 +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
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00008#include "SkBitmapDevice.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +00009#include "SkCanvas.h"
10#include "SkData.h"
robertphillips@google.com81e87392014-01-07 16:08:04 +000011#include "SkNoSaveLayerCanvas.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000012#include "SkPictureUtils.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000013#include "SkPixelRef.h"
junov@chromium.org50a5cfb2013-02-01 20:39:48 +000014#include "SkRRect.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000015#include "SkShader.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000016
17class PixelRefSet {
18public:
19 PixelRefSet(SkTDArray<SkPixelRef*>* array) : fArray(array) {}
20
21 // This does a linear search on existing pixelrefs, so if this list gets big
22 // we should use a more complex sorted/hashy thing.
23 //
24 void add(SkPixelRef* pr) {
25 uint32_t genID = pr->getGenerationID();
26 if (fGenID.find(genID) < 0) {
27 *fArray->append() = pr;
28 *fGenID.append() = genID;
29// SkDebugf("--- adding [%d] %x %d\n", fArray->count() - 1, pr, genID);
30 } else {
31// SkDebugf("--- already have %x %d\n", pr, genID);
32 }
33 }
34
35private:
36 SkTDArray<SkPixelRef*>* fArray;
37 SkTDArray<uint32_t> fGenID;
38};
39
40static void not_supported() {
mtklein@google.com330313a2013-08-22 15:37:26 +000041 SkDEBUGFAIL("this method should never be called");
reed@google.comfe7b1ed2012-11-29 21:00:39 +000042}
43
44static void nothing_to_do() {}
45
46/**
47 * This device will route all bitmaps (primitives and in shaders) to its PRSet.
48 * It should never actually draw anything, so there need not be any pixels
reed@google.comec3ca872013-11-13 16:02:18 +000049 * behind its device.
reed@google.comfe7b1ed2012-11-29 21:00:39 +000050 */
reed@google.comec3ca872013-11-13 16:02:18 +000051class GatherPixelRefDevice : public SkBaseDevice {
reed@google.com4d164702013-11-12 22:27:30 +000052public:
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000053 SK_DECLARE_INST_COUNT(GatherPixelRefDevice)
54
reed@google.comec3ca872013-11-13 16:02:18 +000055 GatherPixelRefDevice(int width, int height, PixelRefSet* prset) {
56 fSize.set(width, height);
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000057 fEmptyBitmap.setInfo(SkImageInfo::MakeUnknown(width, height));
reed@google.com4d164702013-11-12 22:27:30 +000058 fPRSet = prset;
reed@google.com3f4bf512013-11-12 22:14:08 +000059 }
60
reed@google.comec3ca872013-11-13 16:02:18 +000061 virtual int width() const SK_OVERRIDE { return fSize.width(); }
62 virtual int height() const SK_OVERRIDE { return fSize.height(); }
63 virtual bool isOpaque() const SK_OVERRIDE { return false; }
reeda6a8f002014-06-02 05:45:31 -070064#ifdef SK_SUPPORT_LEGACY_DEVICE_CONFIG
reed@google.comec3ca872013-11-13 16:02:18 +000065 virtual SkBitmap::Config config() const SK_OVERRIDE {
66 return SkBitmap::kNo_Config;
67 }
reeda6a8f002014-06-02 05:45:31 -070068#endif
reed@google.comec3ca872013-11-13 16:02:18 +000069 virtual GrRenderTarget* accessRenderTarget() SK_OVERRIDE { return NULL; }
70 virtual bool filterTextFlags(const SkPaint& paint, TextFlags*) SK_OVERRIDE {
robertphillips@google.com81e87392014-01-07 16:08:04 +000071 return false;
reed@google.comec3ca872013-11-13 16:02:18 +000072 }
73 // TODO: allow this call to return failure, or move to SkBitmapDevice only.
74 virtual const SkBitmap& onAccessBitmap() SK_OVERRIDE {
75 return fEmptyBitmap;
76 }
77 virtual void lockPixels() SK_OVERRIDE { nothing_to_do(); }
78 virtual void unlockPixels() SK_OVERRIDE { nothing_to_do(); }
commit-bot@chromium.orgae761f72014-02-05 22:32:02 +000079 virtual bool allowImageFilter(const SkImageFilter*) SK_OVERRIDE { return false; }
80 virtual bool canHandleImageFilter(const SkImageFilter*) SK_OVERRIDE { return false; }
senorblanco@chromium.org4cb543d2014-03-14 15:44:01 +000081 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, const SkImageFilter::Context&,
reed@google.comec3ca872013-11-13 16:02:18 +000082 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE {
83 return false;
84 }
85
reed@google.comfe7b1ed2012-11-29 21:00:39 +000086 virtual void clear(SkColor color) SK_OVERRIDE {
87 nothing_to_do();
88 }
commit-bot@chromium.org4cd9e212014-03-07 03:25:16 +000089
reed@google.comfe7b1ed2012-11-29 21:00:39 +000090 virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE {
91 this->addBitmapFromPaint(paint);
92 }
93 virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, size_t count,
94 const SkPoint[], const SkPaint& paint) SK_OVERRIDE {
95 this->addBitmapFromPaint(paint);
96 }
reed@google.com72aa79c2013-01-24 18:27:42 +000097 virtual void drawRect(const SkDraw&, const SkRect&,
98 const SkPaint& paint) SK_OVERRIDE {
99 this->addBitmapFromPaint(paint);
100 }
scroggo@google.comcac8d012013-11-12 17:10:02 +0000101 virtual void drawRRect(const SkDraw&, const SkRRect&,
102 const SkPaint& paint) SK_OVERRIDE {
103 this->addBitmapFromPaint(paint);
104 }
reed@google.com72aa79c2013-01-24 18:27:42 +0000105 virtual void drawOval(const SkDraw&, const SkRect&,
106 const SkPaint& paint) SK_OVERRIDE {
107 this->addBitmapFromPaint(paint);
108 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000109 virtual void drawPath(const SkDraw&, const SkPath& path,
110 const SkPaint& paint, const SkMatrix* prePathMatrix,
111 bool pathIsMutable) SK_OVERRIDE {
112 this->addBitmapFromPaint(paint);
113 }
114 virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap,
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000115 const SkMatrix&, const SkPaint& paint) SK_OVERRIDE {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000116 this->addBitmap(bitmap);
reedc77392e2014-06-02 13:07:26 -0700117 if (kAlpha_8_SkColorType == bitmap.colorType()) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000118 this->addBitmapFromPaint(paint);
119 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000120 }
121 virtual void drawBitmapRect(const SkDraw&, const SkBitmap& bitmap,
122 const SkRect* srcOrNull, const SkRect& dst,
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000123 const SkPaint& paint,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +0000124 SkCanvas::DrawBitmapRectFlags flags) SK_OVERRIDE {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000125 this->addBitmap(bitmap);
reedc77392e2014-06-02 13:07:26 -0700126 if (kAlpha_8_SkColorType == bitmap.colorType()) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000127 this->addBitmapFromPaint(paint);
128 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000129 }
130 virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap,
131 int x, int y, const SkPaint& paint) SK_OVERRIDE {
132 this->addBitmap(bitmap);
133 }
134 virtual void drawText(const SkDraw&, const void* text, size_t len,
135 SkScalar x, SkScalar y,
136 const SkPaint& paint) SK_OVERRIDE {
137 this->addBitmapFromPaint(paint);
138 }
139 virtual void drawPosText(const SkDraw&, const void* text, size_t len,
140 const SkScalar pos[], SkScalar constY,
141 int, const SkPaint& paint) SK_OVERRIDE {
142 this->addBitmapFromPaint(paint);
143 }
144 virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len,
145 const SkPath& path, const SkMatrix* matrix,
146 const SkPaint& paint) SK_OVERRIDE {
147 this->addBitmapFromPaint(paint);
148 }
149 virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, int vertexCount,
150 const SkPoint verts[], const SkPoint texs[],
151 const SkColor colors[], SkXfermode* xmode,
152 const uint16_t indices[], int indexCount,
153 const SkPaint& paint) SK_OVERRIDE {
154 this->addBitmapFromPaint(paint);
155 }
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000156 virtual void drawDevice(const SkDraw&, SkBaseDevice*, int x, int y,
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000157 const SkPaint&) SK_OVERRIDE {
158 nothing_to_do();
159 }
160
161protected:
reed@google.comec3ca872013-11-13 16:02:18 +0000162 virtual void replaceBitmapBackendForRasterSurface(const SkBitmap&) SK_OVERRIDE {
163 not_supported();
164 }
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000165 virtual SkBaseDevice* onCreateDevice(const SkImageInfo& info, Usage usage) SK_OVERRIDE {
reed@google.comec3ca872013-11-13 16:02:18 +0000166 // we expect to only get called via savelayer, in which case it is fine.
167 SkASSERT(kSaveLayer_Usage == usage);
commit-bot@chromium.org15a14052014-02-16 00:59:25 +0000168 return SkNEW_ARGS(GatherPixelRefDevice, (info.width(), info.height(), fPRSet));
reed@google.comec3ca872013-11-13 16:02:18 +0000169 }
170 virtual void flush() SK_OVERRIDE {}
171
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000172private:
reed@google.comec3ca872013-11-13 16:02:18 +0000173 PixelRefSet* fPRSet;
174 SkBitmap fEmptyBitmap; // legacy -- need to remove the need for this guy
175 SkISize fSize;
176
177 void addBitmap(const SkBitmap& bm) {
178 fPRSet->add(bm.pixelRef());
179 }
180
181 void addBitmapFromPaint(const SkPaint& paint) {
182 SkShader* shader = paint.getShader();
183 if (shader) {
184 SkBitmap bm;
185 // Check whether the shader is a gradient in order to short-circuit
186 // call to asABitmap to prevent generation of bitmaps from
187 // gradient shaders, which implement asABitmap.
188 if (SkShader::kNone_GradientType == shader->asAGradient(NULL) &&
189 shader->asABitmap(&bm, NULL, NULL)) {
190 fPRSet->add(bm.pixelRef());
191 }
192 }
193 }
194
195 typedef SkBaseDevice INHERITED;
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000196};
197
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000198SkData* SkPictureUtils::GatherPixelRefs(SkPicture* pict, const SkRect& area) {
199 if (NULL == pict) {
200 return NULL;
201 }
202
203 // this test also handles if either area or pict's width/height are empty
204 if (!SkRect::Intersects(area,
205 SkRect::MakeWH(SkIntToScalar(pict->width()),
206 SkIntToScalar(pict->height())))) {
207 return NULL;
208 }
209
210 SkTDArray<SkPixelRef*> array;
211 PixelRefSet prset(&array);
212
reed@google.comec3ca872013-11-13 16:02:18 +0000213 GatherPixelRefDevice device(pict->width(), pict->height(), &prset);
robertphillips@google.com81e87392014-01-07 16:08:04 +0000214 SkNoSaveLayerCanvas canvas(&device);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000215
216 canvas.clipRect(area, SkRegion::kIntersect_Op, false);
217 canvas.drawPicture(*pict);
218
219 SkData* data = NULL;
220 int count = array.count();
221 if (count > 0) {
222 data = SkData::NewFromMalloc(array.detach(), count * sizeof(SkPixelRef*));
223 }
224 return data;
225}