blob: 8897e5fcf3bd0d6f3c6fceeb13aa15e03e89f185 [file] [log] [blame]
commit-bot@chromium.orgc4b21e62014-04-11 18:33:31 +00001/*
2 * Copyright 2014 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
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +00008#include "SkRecordDraw.h"
mtklein131a22b2014-08-25 14:16:15 -07009#include "SkPatchUtils.h"
commit-bot@chromium.org506db0b2014-04-08 23:31:35 +000010
mtklein5ad6ee12014-08-11 08:08:43 -070011void SkRecordDraw(const SkRecord& record,
12 SkCanvas* canvas,
reed1bdfd3f2014-11-24 14:41:51 -080013 SkPicture const* const drawablePicts[],
reed3cb38402015-02-06 08:36:15 -080014 SkDrawable* const drawables[],
reed1bdfd3f2014-11-24 14:41:51 -080015 int drawableCount,
mtklein5ad6ee12014-08-11 08:08:43 -070016 const SkBBoxHierarchy* bbh,
robertphillips783fe162015-01-07 07:28:41 -080017 SkPicture::AbortCallback* callback) {
Mike Kleinc11530e2014-06-24 11:29:06 -040018 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
mtklein5ad6ee12014-08-11 08:08:43 -070019
bsalomon49f085d2014-09-05 13:34:00 -070020 if (bbh) {
mtklein5ad6ee12014-08-11 08:08:43 -070021 // Draw only ops that affect pixels in the canvas's current clip.
mtklein3e8232b2014-08-18 13:39:11 -070022 // The SkRecord and BBH were recorded in identity space. This canvas
23 // is not necessarily in that same space. getClipBounds() returns us
24 // this canvas' clip bounds transformed back into identity space, which
25 // lets us query the BBH.
mtklein7cc1a342014-11-20 08:01:09 -080026 SkRect query;
27 if (!canvas->getClipBounds(&query)) {
mtklein49aabde2015-01-05 07:02:45 -080028 query.setEmpty();
mtklein7cc1a342014-11-20 08:01:09 -080029 }
mtklein3e8232b2014-08-18 13:39:11 -070030
mtkleinc6ad06a2015-08-19 09:51:00 -070031 SkTDArray<int> ops;
mtkleina723b572014-08-15 11:49:49 -070032 bbh->search(query, &ops);
mtklein5ad6ee12014-08-11 08:08:43 -070033
reed1bdfd3f2014-11-24 14:41:51 -080034 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
mtklein5ad6ee12014-08-11 08:08:43 -070035 for (int i = 0; i < ops.count(); i++) {
robertphillips783fe162015-01-07 07:28:41 -080036 if (callback && callback->abort()) {
mtklein5ad6ee12014-08-11 08:08:43 -070037 return;
38 }
danakjd239d422014-11-03 12:43:30 -080039 // This visit call uses the SkRecords::Draw::operator() to call
40 // methods on the |canvas|, wrapped by methods defined with the
41 // DRAW() macro.
mtklein343a63d2016-03-22 11:46:53 -070042 record.visit(ops[i], draw);
mtklein5ad6ee12014-08-11 08:08:43 -070043 }
44 } else {
45 // Draw all ops.
reed1bdfd3f2014-11-24 14:41:51 -080046 SkRecords::Draw draw(canvas, drawablePicts, drawables, drawableCount);
mtkleinc6ad06a2015-08-19 09:51:00 -070047 for (int i = 0; i < record.count(); i++) {
robertphillips783fe162015-01-07 07:28:41 -080048 if (callback && callback->abort()) {
mtklein5ad6ee12014-08-11 08:08:43 -070049 return;
50 }
danakjd239d422014-11-03 12:43:30 -080051 // This visit call uses the SkRecords::Draw::operator() to call
52 // methods on the |canvas|, wrapped by methods defined with the
53 // DRAW() macro.
mtklein343a63d2016-03-22 11:46:53 -070054 record.visit(i, draw);
mtklein5ad6ee12014-08-11 08:08:43 -070055 }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000056 }
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000057}
commit-bot@chromium.orgd9ce2be2014-04-09 23:30:28 +000058
reed6be2aa92014-11-18 11:08:05 -080059void SkRecordPartialDraw(const SkRecord& record, SkCanvas* canvas,
60 SkPicture const* const drawablePicts[], int drawableCount,
mtkleinc6ad06a2015-08-19 09:51:00 -070061 int start, int stop,
robertphillips4815fe52014-09-16 10:32:43 -070062 const SkMatrix& initialCTM) {
mtklein00f30bd2014-09-02 12:03:31 -070063 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
64
65 stop = SkTMin(stop, record.count());
halcanary96fcdcc2015-08-27 07:41:13 -070066 SkRecords::Draw draw(canvas, drawablePicts, nullptr, drawableCount, &initialCTM);
mtkleinc6ad06a2015-08-19 09:51:00 -070067 for (int i = start; i < stop; i++) {
mtklein343a63d2016-03-22 11:46:53 -070068 record.visit(i, draw);
mtklein00f30bd2014-09-02 12:03:31 -070069 }
70}
71
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000072namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000073
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000074// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000075template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000076
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000077#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000078DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040079DRAW(Save, save());
mtkleinda574d12016-08-01 11:24:03 -070080DRAW(SaveLayer, saveLayer(SkCanvas::SaveLayerRec(r.bounds,
81 r.paint,
82 r.backdrop.get(),
83 r.saveLayerFlags)));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000084DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
mtkleine9d20522015-11-19 12:08:24 -080085DRAW(Concat, concat(r.matrix));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000086
mtkleincdeeb092014-11-20 09:14:28 -080087DRAW(ClipPath, clipPath(r.path, r.opAA.op, r.opAA.aa));
88DRAW(ClipRRect, clipRRect(r.rrect, r.opAA.op, r.opAA.aa));
89DRAW(ClipRect, clipRect(r.rect, r.opAA.op, r.opAA.aa));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000090DRAW(ClipRegion, clipRegion(r.region, r.op));
91
vjiaoblack95302da2016-07-21 10:25:54 -070092#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -070093DRAW(TranslateZ, SkCanvas::translateZ(r.z));
vjiaoblack95302da2016-07-21 10:25:54 -070094#else
95template <> void Draw::draw(const TranslateZ& r) { }
96#endif
vjiaoblacke5de1302016-07-13 14:05:28 -070097
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000098DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
mtkleinda574d12016-08-01 11:24:03 -070099DRAW(DrawImage, drawImage(r.image.get(), r.left, r.top, r.paint));
100DRAW(DrawImageRect, legacy_drawImageRect(r.image.get(), r.src, r.dst, r.paint, r.constraint));
101DRAW(DrawImageNine, drawImageNine(r.image.get(), r.center, r.dst, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000102DRAW(DrawOval, drawOval(r.oval, r.paint));
103DRAW(DrawPaint, drawPaint(r.paint));
104DRAW(DrawPath, drawPath(r.path, r.paint));
mtklein9b222a52014-09-18 11:16:31 -0700105DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700106DRAW(DrawPicture, drawPicture(r.picture.get(), &r.matrix, r.paint));
vjiaoblack95302da2016-07-21 10:25:54 -0700107
108#ifdef SK_EXPERIMENTAL_SHADOWING
mtkleinda574d12016-08-01 11:24:03 -0700109DRAW(DrawShadowedPicture, drawShadowedPicture(r.picture.get(), &r.matrix, r.paint));
vjiaoblack95302da2016-07-21 10:25:54 -0700110#else
111template <> void Draw::draw(const DrawShadowedPicture& r) { }
112#endif
113
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000114DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
115DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
116DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
117DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
118DRAW(DrawRect, drawRect(r.rect, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000119DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700120DRAW(DrawTextBlob, drawTextBlob(r.blob.get(), r.x, r.y, r.paint));
mtkleinaf579032014-12-01 11:03:37 -0800121DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, &r.matrix, r.paint));
reed45561a02016-07-07 12:47:17 -0700122DRAW(DrawTextRSXform, drawTextRSXform(r.text, r.byteLength, r.xforms, r.cull, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700123DRAW(DrawAtlas, drawAtlas(r.atlas.get(),
124 r.xforms, r.texs, r.colors, r.count, r.mode, r.cull, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000125DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
mtklein449d9b72015-09-28 10:33:02 -0700126 r.xmode, r.indices, r.indexCount, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700127DRAW(DrawAnnotation, drawAnnotation(r.rect, r.key.c_str(), r.value.get()));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000128#undef DRAW
129
reed6be2aa92014-11-18 11:08:05 -0800130template <> void Draw::draw(const DrawDrawable& r) {
131 SkASSERT(r.index >= 0);
132 SkASSERT(r.index < fDrawableCount);
reed1bdfd3f2014-11-24 14:41:51 -0800133 if (fDrawables) {
halcanary96fcdcc2015-08-27 07:41:13 -0700134 SkASSERT(nullptr == fDrawablePicts);
reeda8db7282015-07-07 10:22:31 -0700135 fCanvas->drawDrawable(fDrawables[r.index], r.matrix);
reed1bdfd3f2014-11-24 14:41:51 -0800136 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700137 fCanvas->drawPicture(fDrawablePicts[r.index], r.matrix, nullptr);
reed1bdfd3f2014-11-24 14:41:51 -0800138 }
reed6be2aa92014-11-18 11:08:05 -0800139}
140
mtklein5ad6ee12014-08-11 08:08:43 -0700141// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700142//
143// The interesting part here is how to calculate bounds for ops which don't
144// have intrinsic bounds. What is the bounds of a Save or a Translate?
145//
146// We answer this by thinking about a particular definition of bounds: if I
147// don't execute this op, pixels in this rectangle might draw incorrectly. So
148// the bounds of a Save, a Translate, a Restore, etc. are the union of the
149// bounds of Draw* ops that they might have an effect on. For any given
150// Save/Restore block, the bounds of the Save, the Restore, and any other
151// non-drawing ("control") ops inside are exactly the union of the bounds of
152// the drawing ops inside that block.
153//
154// To implement this, we keep a stack of active Save blocks. As we consume ops
155// inside the Save/Restore block, drawing ops are unioned with the bounds of
156// the block, and control ops are stashed away for later. When we finish the
157// block with a Restore, our bounds are complete, and we go back and fill them
158// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700159class FillBounds : SkNoncopyable {
160public:
mtklein40732b32015-10-24 07:45:47 -0700161 FillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[])
robertphillips4e8e3422014-11-12 06:46:08 -0800162 : fNumRecords(record.count())
163 , fCullRect(cullRect)
mtklein40732b32015-10-24 07:45:47 -0700164 , fBounds(bounds) {
mtkleine9d20522015-11-19 12:08:24 -0800165 fCTM = SkMatrix::I();
robertphillips4d52afe2014-11-03 08:19:44 -0800166 fCurrentClipBounds = fCullRect;
robertphillips4e8e3422014-11-12 06:46:08 -0800167 }
mtklein5ad6ee12014-08-11 08:08:43 -0700168
mtklein40732b32015-10-24 07:45:47 -0700169 void cleanUp() {
mtklein828ce1f2014-08-13 12:58:45 -0700170 // If we have any lingering unpaired Saves, simulate restores to make
171 // sure all ops in those Save blocks have their bounds calculated.
172 while (!fSaveStack.isEmpty()) {
173 this->popSaveBlock();
174 }
175
176 // Any control ops not part of any Save/Restore block draw everywhere.
177 while (!fControlIndices.isEmpty()) {
robertphillips4d52afe2014-11-03 08:19:44 -0800178 this->popControl(fCullRect);
mtklein828ce1f2014-08-13 12:58:45 -0700179 }
mtklein828ce1f2014-08-13 12:58:45 -0700180 }
mtklein5ad6ee12014-08-11 08:08:43 -0700181
mtklein40732b32015-10-24 07:45:47 -0700182 void setCurrentOp(int currentOp) { fCurrentOp = currentOp; }
183
184
mtkleina723b572014-08-15 11:49:49 -0700185 template <typename T> void operator()(const T& op) {
186 this->updateCTM(op);
187 this->updateClipBounds(op);
188 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700189 }
190
mtklein533eb782014-08-27 10:39:42 -0700191 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
192 typedef SkRect Bounds;
193
mtkleinc6ad06a2015-08-19 09:51:00 -0700194 int currentOp() const { return fCurrentOp; }
mtkleine9d20522015-11-19 12:08:24 -0800195 const SkMatrix& ctm() const { return fCTM; }
mtkleinc6ad06a2015-08-19 09:51:00 -0700196 const Bounds& getBounds(int index) const { return fBounds[index]; }
robertphillips4e8e3422014-11-12 06:46:08 -0800197
198 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
199 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
200 // Inverted rectangles really confuse our BBHs.
201 rect.sort();
202
203 // Adjust the rect for its own paint.
204 if (!AdjustForPaint(paint, &rect)) {
205 // The paint could do anything to our bounds. The only safe answer is the current clip.
206 return fCurrentClipBounds;
207 }
208
209 // Adjust rect for all the paints from the SaveLayers we're inside.
210 if (!this->adjustForSaveLayerPaints(&rect)) {
211 // Same deal as above.
212 return fCurrentClipBounds;
213 }
214
215 // Map the rect back to identity space.
mtkleine9d20522015-11-19 12:08:24 -0800216 fCTM.mapRect(&rect);
robertphillips4e8e3422014-11-12 06:46:08 -0800217
218 // Nothing can draw outside the current clip.
robertphillipsc187a3c2014-12-30 13:53:51 -0800219 if (!rect.intersect(fCurrentClipBounds)) {
220 return Bounds::MakeEmpty();
221 }
222
robertphillips4e8e3422014-11-12 06:46:08 -0800223 return rect;
224 }
225
226private:
mtklein828ce1f2014-08-13 12:58:45 -0700227 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700228 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700229 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700230 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
senorblancodb64af32015-12-09 10:11:43 -0800231 SkMatrix ctm;
mtklein828ce1f2014-08-13 12:58:45 -0700232 };
233
mtkleine9d20522015-11-19 12:08:24 -0800234 // Only Restore, SetMatrix, and Concat change the CTM.
mtklein8e393bf2014-10-01 12:48:58 -0700235 template <typename T> void updateCTM(const T&) {}
mtkleine9d20522015-11-19 12:08:24 -0800236 void updateCTM(const Restore& op) { fCTM = op.matrix; }
237 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
238 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
mtkleina723b572014-08-15 11:49:49 -0700239
mtklein8e393bf2014-10-01 12:48:58 -0700240 // Most ops don't change the clip.
241 template <typename T> void updateClipBounds(const T&) {}
Mike Klein271a0302014-09-23 15:28:38 -0400242
mtklein8e393bf2014-10-01 12:48:58 -0700243 // Clip{Path,RRect,Rect,Region} obviously change the clip. They all know their bounds already.
244 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
245 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
246 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
247 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
Mike Klein271a0302014-09-23 15:28:38 -0400248
mtklein8e393bf2014-10-01 12:48:58 -0700249 // The bounds of clip ops need to be adjusted for the paints of saveLayers they're inside.
250 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
251 Bounds clip = SkRect::Make(devBounds);
Mike Klein271a0302014-09-23 15:28:38 -0400252 // We don't call adjustAndMap() because as its last step it would intersect the adjusted
253 // clip bounds with the previous clip, exactly what we can't do when the clip grows.
schenney23d85932015-03-06 16:20:28 -0800254 if (this->adjustForSaveLayerPaints(&clip)) {
255 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
256 } else {
257 fCurrentClipBounds = fCullRect;
258 }
Mike Klein271a0302014-09-23 15:28:38 -0400259 }
260
mtklein8e393bf2014-10-01 12:48:58 -0700261 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
262 void updateClipBounds(const Restore& op) {
263 // This is just like the clip ops above, but we need to skip the effects (if any) of our
264 // paired saveLayer (if it is one); it has not yet been popped off the save stack. Our
265 // devBounds reflect the state of the world after the saveLayer/restore block is done,
266 // so they are not affected by the saveLayer's paint.
267 const int kSavesToIgnore = 1;
268 Bounds clip = SkRect::Make(op.devBounds);
schenney23d85932015-03-06 16:20:28 -0800269 if (this->adjustForSaveLayerPaints(&clip, kSavesToIgnore)) {
270 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
271 } else {
272 fCurrentClipBounds = fCullRect;
273 }
mtklein8e393bf2014-10-01 12:48:58 -0700274 }
275
Mike Klein271a0302014-09-23 15:28:38 -0400276 // We also take advantage of SaveLayer bounds when present to further cut the clip down.
mtkleina723b572014-08-15 11:49:49 -0700277 void updateClipBounds(const SaveLayer& op) {
278 if (op.bounds) {
Mike Klein271a0302014-09-23 15:28:38 -0400279 // adjustAndMap() intersects these layer bounds with the previous clip for us.
280 fCurrentClipBounds = this->adjustAndMap(*op.bounds, op.paint);
mtkleina723b572014-08-15 11:49:49 -0700281 }
282 }
mtklein6cfa73a2014-08-13 13:33:49 -0700283
mtklein828ce1f2014-08-13 12:58:45 -0700284 // The bounds of these ops must be calculated when we hit the Restore
285 // from the bounds of the ops in the same Save block.
halcanary96fcdcc2015-08-27 07:41:13 -0700286 void trackBounds(const Save&) { this->pushSaveBlock(nullptr); }
mtkleina723b572014-08-15 11:49:49 -0700287 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
288 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700289
mtklein68199a22014-08-25 13:49:29 -0700290 void trackBounds(const SetMatrix&) { this->pushControl(); }
mtkleine9d20522015-11-19 12:08:24 -0800291 void trackBounds(const Concat&) { this->pushControl(); }
mtklein68199a22014-08-25 13:49:29 -0700292 void trackBounds(const ClipRect&) { this->pushControl(); }
293 void trackBounds(const ClipRRect&) { this->pushControl(); }
294 void trackBounds(const ClipPath&) { this->pushControl(); }
295 void trackBounds(const ClipRegion&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700296
vjiaoblacke5de1302016-07-13 14:05:28 -0700297 void trackBounds(const TranslateZ&) { this->pushControl(); }
298
mtklein828ce1f2014-08-13 12:58:45 -0700299 // For all other ops, we can calculate and store the bounds directly now.
300 template <typename T> void trackBounds(const T& op) {
301 fBounds[fCurrentOp] = this->bounds(op);
302 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700303 }
304
mtkleina723b572014-08-15 11:49:49 -0700305 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700306 // Starting a new Save block. Push a new entry to represent that.
robertphillips4d52afe2014-11-03 08:19:44 -0800307 SaveBounds sb;
308 sb.controlOps = 0;
309 // If the paint affects transparent black, the bound shouldn't be smaller
310 // than the current clip bounds.
311 sb.bounds =
312 PaintMayAffectTransparentBlack(paint) ? fCurrentClipBounds : Bounds::MakeEmpty();
313 sb.paint = paint;
senorblancodb64af32015-12-09 10:11:43 -0800314 sb.ctm = this->fCTM;
robertphillips4d52afe2014-11-03 08:19:44 -0800315
mtklein828ce1f2014-08-13 12:58:45 -0700316 fSaveStack.push(sb);
317 this->pushControl();
318 }
319
mtkleind910f542014-08-22 09:06:34 -0700320 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700321 if (paint) {
322 // FIXME: this is very conservative
323 if (paint->getImageFilter() || paint->getColorFilter()) {
324 return true;
325 }
326
327 // Unusual Xfermodes require us to process a saved layer
328 // even with operations outisde the clip.
329 // For example, DstIn is used by masking layers.
330 // https://code.google.com/p/skia/issues/detail?id=1291
331 // https://crbug.com/401593
332 SkXfermode* xfermode = paint->getXfermode();
333 SkXfermode::Mode mode;
halcanary96fcdcc2015-08-27 07:41:13 -0700334 // SrcOver is ok, and is also the common case with a nullptr xfermode.
dneto327f9052014-09-15 10:53:16 -0700335 // So we should make that the fast path and bypass the mode extraction
336 // and test.
337 if (xfermode && xfermode->asMode(&mode)) {
338 switch (mode) {
339 // For each of the following transfer modes, if the source
340 // alpha is zero (our transparent black), the resulting
341 // blended alpha is not necessarily equal to the original
342 // destination alpha.
343 case SkXfermode::kClear_Mode:
344 case SkXfermode::kSrc_Mode:
345 case SkXfermode::kSrcIn_Mode:
346 case SkXfermode::kDstIn_Mode:
347 case SkXfermode::kSrcOut_Mode:
348 case SkXfermode::kDstATop_Mode:
349 case SkXfermode::kModulate_Mode:
350 return true;
351 break;
352 default:
353 break;
354 }
355 }
356 }
357 return false;
mtkleind910f542014-08-22 09:06:34 -0700358 }
359
mtklein533eb782014-08-27 10:39:42 -0700360 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700361 // We're done the Save block. Apply the block's bounds to all control ops inside it.
362 SaveBounds sb;
363 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700364
mtklein828ce1f2014-08-13 12:58:45 -0700365 while (sb.controlOps --> 0) {
robertphillips4d52afe2014-11-03 08:19:44 -0800366 this->popControl(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700367 }
368
369 // This whole Save block may be part another Save block.
robertphillips4d52afe2014-11-03 08:19:44 -0800370 this->updateSaveBounds(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700371
372 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
robertphillips4d52afe2014-11-03 08:19:44 -0800373 return sb.bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700374 }
375
376 void pushControl() {
377 fControlIndices.push(fCurrentOp);
378 if (!fSaveStack.isEmpty()) {
379 fSaveStack.top().controlOps++;
380 }
381 }
382
mtklein533eb782014-08-27 10:39:42 -0700383 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700384 fBounds[fControlIndices.top()] = bounds;
385 fControlIndices.pop();
386 }
387
mtklein533eb782014-08-27 10:39:42 -0700388 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700389 // If we're in a Save block, expand its bounds to cover these bounds too.
390 if (!fSaveStack.isEmpty()) {
391 fSaveStack.top().bounds.join(bounds);
392 }
393 }
394
mtklein131a22b2014-08-25 14:16:15 -0700395 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700396 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700397
mtklein533eb782014-08-27 10:39:42 -0700398 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
399 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700400
mtklein533eb782014-08-27 10:39:42 -0700401 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
402 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
403 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700404 return this->adjustAndMap(op.rrect.rect(), &op.paint);
405 }
mtklein533eb782014-08-27 10:39:42 -0700406 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700407 return this->adjustAndMap(op.outer.rect(), &op.paint);
408 }
piotaixr65151752014-10-16 11:58:39 -0700409 Bounds bounds(const DrawImage& op) const {
mtkleinda574d12016-08-01 11:24:03 -0700410 const SkImage* image = op.image.get();
piotaixr65151752014-10-16 11:58:39 -0700411 SkRect rect = SkRect::MakeXYWH(op.left, op.top, image->width(), image->height());
mtklein62b67ae2014-08-18 11:10:37 -0700412
piotaixr65151752014-10-16 11:58:39 -0700413 return this->adjustAndMap(rect, op.paint);
414 }
415 Bounds bounds(const DrawImageRect& op) const {
416 return this->adjustAndMap(op.dst, op.paint);
417 }
reed4c21dc52015-06-25 12:32:03 -0700418 Bounds bounds(const DrawImageNine& op) const {
419 return this->adjustAndMap(op.dst, op.paint);
420 }
mtklein533eb782014-08-27 10:39:42 -0700421 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700422 return op.path.isInverseFillType() ? fCurrentClipBounds
423 : this->adjustAndMap(op.path.getBounds(), &op.paint);
424 }
mtklein533eb782014-08-27 10:39:42 -0700425 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700426 SkRect dst;
427 dst.set(op.pts, op.count);
428
429 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
430 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
431 dst.outset(stroke/2, stroke/2);
432
433 return this->adjustAndMap(dst, &op.paint);
434 }
mtklein533eb782014-08-27 10:39:42 -0700435 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700436 SkRect dst;
437 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
438 return this->adjustAndMap(dst, &op.paint);
439 }
mtklein533eb782014-08-27 10:39:42 -0700440 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700441 SkRect dst;
442 dst.set(op.vertices, op.vertexCount);
443 return this->adjustAndMap(dst, &op.paint);
444 }
mtklein64b4c782015-07-01 13:56:53 -0700445
reed71c3c762015-06-24 10:29:17 -0700446 Bounds bounds(const DrawAtlas& op) const {
447 if (op.cull) {
reed45561a02016-07-07 12:47:17 -0700448 // TODO: <reed> can we pass nullptr for the paint? Isn't cull already "correct"
449 // for the paint (by the caller)?
reed71c3c762015-06-24 10:29:17 -0700450 return this->adjustAndMap(*op.cull, op.paint);
451 } else {
452 return fCurrentClipBounds;
453 }
454 }
mtklein64b4c782015-07-01 13:56:53 -0700455
mtklein533eb782014-08-27 10:39:42 -0700456 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700457 SkRect dst = op.picture->cullRect();
mtkleinaf579032014-12-01 11:03:37 -0800458 op.matrix.mapRect(&dst);
mtklein131a22b2014-08-25 14:16:15 -0700459 return this->adjustAndMap(dst, op.paint);
460 }
mtklein62b67ae2014-08-18 11:10:37 -0700461
vjiaoblack95302da2016-07-21 10:25:54 -0700462 Bounds bounds(const DrawShadowedPicture& op) const {
463 SkRect dst = op.picture->cullRect();
464 op.matrix.mapRect(&dst);
465 return this->adjustAndMap(dst, op.paint);
466 }
467
mtklein533eb782014-08-27 10:39:42 -0700468 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700469 const int N = op.paint.countText(op.text, op.byteLength);
470 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700471 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700472 }
473
474 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700475 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700476 AdjustTextForFontMetrics(&dst, op.paint);
477 return this->adjustAndMap(dst, &op.paint);
478 }
mtklein533eb782014-08-27 10:39:42 -0700479 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700480 const int N = op.paint.countText(op.text, op.byteLength);
481 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700482 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700483 }
484
485 SkScalar left = op.xpos[0], right = op.xpos[0];
486 for (int i = 1; i < N; i++) {
487 left = SkMinScalar(left, op.xpos[i]);
488 right = SkMaxScalar(right, op.xpos[i]);
489 }
490 SkRect dst = { left, op.y, right, op.y };
491 AdjustTextForFontMetrics(&dst, op.paint);
492 return this->adjustAndMap(dst, &op.paint);
493 }
mtklein533eb782014-08-27 10:39:42 -0700494 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700495 SkRect dst = op.path.getBounds();
496
mtklein9a5380d2014-12-16 06:31:01 -0800497 // Pad all sides by the maximum padding in any direction we'd normally apply.
mtklein131a22b2014-08-25 14:16:15 -0700498 SkRect pad = { 0, 0, 0, 0};
499 AdjustTextForFontMetrics(&pad, op.paint);
mtklein9a5380d2014-12-16 06:31:01 -0800500
501 // That maximum padding happens to always be the right pad today.
502 SkASSERT(pad.fLeft == -pad.fRight);
503 SkASSERT(pad.fTop == -pad.fBottom);
504 SkASSERT(pad.fRight > pad.fBottom);
505 dst.outset(pad.fRight, pad.fRight);
506
mtklein131a22b2014-08-25 14:16:15 -0700507 return this->adjustAndMap(dst, &op.paint);
508 }
509
reed45561a02016-07-07 12:47:17 -0700510 Bounds bounds(const DrawTextRSXform& op) const {
511 if (op.cull) {
512 return this->adjustAndMap(*op.cull, nullptr);
513 } else {
514 return fCurrentClipBounds;
515 }
516 }
517
mtklein533eb782014-08-27 10:39:42 -0700518 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700519 SkRect dst = op.blob->bounds();
520 dst.offset(op.x, op.y);
mtklein131a22b2014-08-25 14:16:15 -0700521 return this->adjustAndMap(dst, &op.paint);
522 }
mtklein62b67ae2014-08-18 11:10:37 -0700523
reed6be2aa92014-11-18 11:08:05 -0800524 Bounds bounds(const DrawDrawable& op) const {
halcanary96fcdcc2015-08-27 07:41:13 -0700525 return this->adjustAndMap(op.worstCaseBounds, nullptr);
reed6be2aa92014-11-18 11:08:05 -0800526 }
527
reedf70b5312016-03-04 16:36:20 -0800528 Bounds bounds(const DrawAnnotation& op) const {
529 return this->adjustAndMap(op.rect, nullptr);
530 }
mtklein343a63d2016-03-22 11:46:53 -0700531
mtklein62b67ae2014-08-18 11:10:37 -0700532 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
mtklein9a5380d2014-12-16 06:31:01 -0800533#ifdef SK_DEBUG
534 SkRect correct = *rect;
535#endif
536 // crbug.com/373785 ~~> xPad = 4x yPad
537 // crbug.com/424824 ~~> bump yPad from 2x text size to 2.5x
538 const SkScalar yPad = 2.5f * paint.getTextSize(),
539 xPad = 4.0f * yPad;
540 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700541#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700542 SkPaint::FontMetrics metrics;
543 paint.getFontMetrics(&metrics);
mtklein9a5380d2014-12-16 06:31:01 -0800544 correct.fLeft += metrics.fXMin;
545 correct.fTop += metrics.fTop;
546 correct.fRight += metrics.fXMax;
547 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700548 // See skia:2862 for why we ignore small text sizes.
mtklein9a5380d2014-12-16 06:31:01 -0800549 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
mtkleined167ac2014-10-29 16:07:10 -0700550 "%f %f %f %f vs. %f %f %f %f\n",
mtklein9a5380d2014-12-16 06:31:01 -0800551 -xPad, -yPad, +xPad, +yPad,
mtkleined167ac2014-10-29 16:07:10 -0700552 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
mtkleina19afb42014-08-19 17:47:14 -0700553#endif
mtklein62b67ae2014-08-18 11:10:37 -0700554 }
555
mtklein479601b2014-08-18 08:45:33 -0700556 // Returns true if rect was meaningfully adjusted for the effects of paint,
557 // false if the paint could affect the rect in unknown ways.
558 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700559 if (paint) {
560 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700561 *rect = paint->computeFastBounds(*rect, rect);
562 return true;
mtkleina723b572014-08-15 11:49:49 -0700563 }
mtklein479601b2014-08-18 08:45:33 -0700564 return false;
565 }
566 return true;
567 }
568
mtklein8e393bf2014-10-01 12:48:58 -0700569 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
570 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
senorblancodb64af32015-12-09 10:11:43 -0800571 SkMatrix inverse;
572 if (!fSaveStack[i].ctm.invert(&inverse)) {
573 return false;
574 }
575 inverse.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400576 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
577 return false;
578 }
senorblancodb64af32015-12-09 10:11:43 -0800579 fSaveStack[i].ctm.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400580 }
581 return true;
582 }
583
mtkleinc6ad06a2015-08-19 09:51:00 -0700584 const int fNumRecords;
mtkleina723b572014-08-15 11:49:49 -0700585
robertphillips4d52afe2014-11-03 08:19:44 -0800586 // We do not guarantee anything for operations outside of the cull rect
587 const SkRect fCullRect;
588
mtklein533eb782014-08-27 10:39:42 -0700589 // Conservative identity-space bounds for each op in the SkRecord.
mtklein40732b32015-10-24 07:45:47 -0700590 Bounds* fBounds;
mtkleina723b572014-08-15 11:49:49 -0700591
592 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
593 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700594 // identity-space bounds of the current clip (fCurrentClipBounds).
mtkleinc6ad06a2015-08-19 09:51:00 -0700595 int fCurrentOp;
mtkleine9d20522015-11-19 12:08:24 -0800596 SkMatrix fCTM;
mtklein533eb782014-08-27 10:39:42 -0700597 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700598
599 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700600 SkTDArray<SaveBounds> fSaveStack;
mtkleinc6ad06a2015-08-19 09:51:00 -0700601 SkTDArray<int> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700602};
603
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000604} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700605
mtklein40732b32015-10-24 07:45:47 -0700606void SkRecordFillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[]) {
607 SkRecords::FillBounds visitor(cullRect, record, bounds);
mtkleinc6ad06a2015-08-19 09:51:00 -0700608 for (int curOp = 0; curOp < record.count(); curOp++) {
robertphillips4e8e3422014-11-12 06:46:08 -0800609 visitor.setCurrentOp(curOp);
mtklein343a63d2016-03-22 11:46:53 -0700610 record.visit(curOp, visitor);
robertphillips4e8e3422014-11-12 06:46:08 -0800611 }
mtklein40732b32015-10-24 07:45:47 -0700612 visitor.cleanUp();
mtklein5ad6ee12014-08-11 08:08:43 -0700613}
robertphillips4e8e3422014-11-12 06:46:08 -0800614