blob: dca19df1005cab64277135314255f92d8b5f968c [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));
mtkleincbdf0072016-08-19 09:05:27 -070086DRAW(Translate, translate(r.dx, r.dy));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000087
mtkleincdeeb092014-11-20 09:14:28 -080088DRAW(ClipPath, clipPath(r.path, r.opAA.op, r.opAA.aa));
89DRAW(ClipRRect, clipRRect(r.rrect, r.opAA.op, r.opAA.aa));
90DRAW(ClipRect, clipRect(r.rect, r.opAA.op, r.opAA.aa));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000091DRAW(ClipRegion, clipRegion(r.region, r.op));
92
vjiaoblack95302da2016-07-21 10:25:54 -070093#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke5de1302016-07-13 14:05:28 -070094DRAW(TranslateZ, SkCanvas::translateZ(r.z));
vjiaoblack95302da2016-07-21 10:25:54 -070095#else
96template <> void Draw::draw(const TranslateZ& r) { }
97#endif
vjiaoblacke5de1302016-07-13 14:05:28 -070098
bsalomonac3aa242016-08-19 11:25:19 -070099DRAW(DrawArc, drawArc(r.oval, r.startAngle, r.sweepAngle, r.useCenter, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000100DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700101DRAW(DrawImage, drawImage(r.image.get(), r.left, r.top, r.paint));
msarettc573a402016-08-02 08:05:56 -0700102
103template <> void Draw::draw(const DrawImageLattice& r) {
104 SkCanvas::Lattice lattice;
105 lattice.fXCount = r.xCount;
106 lattice.fXDivs = r.xDivs;
107 lattice.fYCount = r.yCount;
108 lattice.fYDivs = r.yDivs;
msarett0764efe2016-09-02 11:24:30 -0700109 lattice.fFlags = (0 == r.flagCount) ? nullptr : r.flags;
msarett71df2d72016-09-30 12:41:42 -0700110 lattice.fBounds = &r.src;
msarettc573a402016-08-02 08:05:56 -0700111 fCanvas->drawImageLattice(r.image.get(), lattice, r.dst, r.paint);
112}
113
mtkleinda574d12016-08-01 11:24:03 -0700114DRAW(DrawImageRect, legacy_drawImageRect(r.image.get(), r.src, r.dst, r.paint, r.constraint));
115DRAW(DrawImageNine, drawImageNine(r.image.get(), r.center, r.dst, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000116DRAW(DrawOval, drawOval(r.oval, r.paint));
117DRAW(DrawPaint, drawPaint(r.paint));
118DRAW(DrawPath, drawPath(r.path, r.paint));
mtklein9b222a52014-09-18 11:16:31 -0700119DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700120DRAW(DrawPicture, drawPicture(r.picture.get(), &r.matrix, r.paint));
vjiaoblack95302da2016-07-21 10:25:54 -0700121
122#ifdef SK_EXPERIMENTAL_SHADOWING
vjiaoblacke6f5d562016-08-25 06:30:23 -0700123DRAW(DrawShadowedPicture, drawShadowedPicture(r.picture.get(), &r.matrix, r.paint, r.params));
vjiaoblack95302da2016-07-21 10:25:54 -0700124#else
125template <> void Draw::draw(const DrawShadowedPicture& r) { }
126#endif
127
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000128DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
129DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
130DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
131DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
132DRAW(DrawRect, drawRect(r.rect, r.paint));
msarett44df6512016-08-25 13:54:30 -0700133DRAW(DrawRegion, drawRegion(r.region, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000134DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700135DRAW(DrawTextBlob, drawTextBlob(r.blob.get(), r.x, r.y, r.paint));
mtkleinaf579032014-12-01 11:03:37 -0800136DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, &r.matrix, r.paint));
reed45561a02016-07-07 12:47:17 -0700137DRAW(DrawTextRSXform, drawTextRSXform(r.text, r.byteLength, r.xforms, r.cull, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700138DRAW(DrawAtlas, drawAtlas(r.atlas.get(),
139 r.xforms, r.texs, r.colors, r.count, r.mode, r.cull, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000140DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
mtklein449d9b72015-09-28 10:33:02 -0700141 r.xmode, r.indices, r.indexCount, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700142DRAW(DrawAnnotation, drawAnnotation(r.rect, r.key.c_str(), r.value.get()));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000143#undef DRAW
144
reed6be2aa92014-11-18 11:08:05 -0800145template <> void Draw::draw(const DrawDrawable& r) {
146 SkASSERT(r.index >= 0);
147 SkASSERT(r.index < fDrawableCount);
reed1bdfd3f2014-11-24 14:41:51 -0800148 if (fDrawables) {
halcanary96fcdcc2015-08-27 07:41:13 -0700149 SkASSERT(nullptr == fDrawablePicts);
reeda8db7282015-07-07 10:22:31 -0700150 fCanvas->drawDrawable(fDrawables[r.index], r.matrix);
reed1bdfd3f2014-11-24 14:41:51 -0800151 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700152 fCanvas->drawPicture(fDrawablePicts[r.index], r.matrix, nullptr);
reed1bdfd3f2014-11-24 14:41:51 -0800153 }
reed6be2aa92014-11-18 11:08:05 -0800154}
155
mtklein5ad6ee12014-08-11 08:08:43 -0700156// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700157//
158// The interesting part here is how to calculate bounds for ops which don't
159// have intrinsic bounds. What is the bounds of a Save or a Translate?
160//
161// We answer this by thinking about a particular definition of bounds: if I
162// don't execute this op, pixels in this rectangle might draw incorrectly. So
163// the bounds of a Save, a Translate, a Restore, etc. are the union of the
164// bounds of Draw* ops that they might have an effect on. For any given
165// Save/Restore block, the bounds of the Save, the Restore, and any other
166// non-drawing ("control") ops inside are exactly the union of the bounds of
167// the drawing ops inside that block.
168//
169// To implement this, we keep a stack of active Save blocks. As we consume ops
170// inside the Save/Restore block, drawing ops are unioned with the bounds of
171// the block, and control ops are stashed away for later. When we finish the
172// block with a Restore, our bounds are complete, and we go back and fill them
173// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700174class FillBounds : SkNoncopyable {
175public:
mtklein40732b32015-10-24 07:45:47 -0700176 FillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[])
robertphillips4e8e3422014-11-12 06:46:08 -0800177 : fNumRecords(record.count())
178 , fCullRect(cullRect)
mtklein40732b32015-10-24 07:45:47 -0700179 , fBounds(bounds) {
mtkleine9d20522015-11-19 12:08:24 -0800180 fCTM = SkMatrix::I();
robertphillips4d52afe2014-11-03 08:19:44 -0800181 fCurrentClipBounds = fCullRect;
robertphillips4e8e3422014-11-12 06:46:08 -0800182 }
mtklein5ad6ee12014-08-11 08:08:43 -0700183
mtklein40732b32015-10-24 07:45:47 -0700184 void cleanUp() {
mtklein828ce1f2014-08-13 12:58:45 -0700185 // If we have any lingering unpaired Saves, simulate restores to make
186 // sure all ops in those Save blocks have their bounds calculated.
187 while (!fSaveStack.isEmpty()) {
188 this->popSaveBlock();
189 }
190
191 // Any control ops not part of any Save/Restore block draw everywhere.
192 while (!fControlIndices.isEmpty()) {
robertphillips4d52afe2014-11-03 08:19:44 -0800193 this->popControl(fCullRect);
mtklein828ce1f2014-08-13 12:58:45 -0700194 }
mtklein828ce1f2014-08-13 12:58:45 -0700195 }
mtklein5ad6ee12014-08-11 08:08:43 -0700196
mtklein40732b32015-10-24 07:45:47 -0700197 void setCurrentOp(int currentOp) { fCurrentOp = currentOp; }
198
199
mtkleina723b572014-08-15 11:49:49 -0700200 template <typename T> void operator()(const T& op) {
201 this->updateCTM(op);
202 this->updateClipBounds(op);
203 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700204 }
205
mtklein533eb782014-08-27 10:39:42 -0700206 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
207 typedef SkRect Bounds;
208
mtkleinc6ad06a2015-08-19 09:51:00 -0700209 int currentOp() const { return fCurrentOp; }
mtkleine9d20522015-11-19 12:08:24 -0800210 const SkMatrix& ctm() const { return fCTM; }
mtkleinc6ad06a2015-08-19 09:51:00 -0700211 const Bounds& getBounds(int index) const { return fBounds[index]; }
robertphillips4e8e3422014-11-12 06:46:08 -0800212
213 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
214 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
215 // Inverted rectangles really confuse our BBHs.
216 rect.sort();
217
218 // Adjust the rect for its own paint.
219 if (!AdjustForPaint(paint, &rect)) {
220 // The paint could do anything to our bounds. The only safe answer is the current clip.
221 return fCurrentClipBounds;
222 }
223
224 // Adjust rect for all the paints from the SaveLayers we're inside.
225 if (!this->adjustForSaveLayerPaints(&rect)) {
226 // Same deal as above.
227 return fCurrentClipBounds;
228 }
229
230 // Map the rect back to identity space.
mtkleine9d20522015-11-19 12:08:24 -0800231 fCTM.mapRect(&rect);
robertphillips4e8e3422014-11-12 06:46:08 -0800232
233 // Nothing can draw outside the current clip.
robertphillipsc187a3c2014-12-30 13:53:51 -0800234 if (!rect.intersect(fCurrentClipBounds)) {
235 return Bounds::MakeEmpty();
236 }
237
robertphillips4e8e3422014-11-12 06:46:08 -0800238 return rect;
239 }
240
241private:
mtklein828ce1f2014-08-13 12:58:45 -0700242 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700243 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700244 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700245 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
senorblancodb64af32015-12-09 10:11:43 -0800246 SkMatrix ctm;
mtklein828ce1f2014-08-13 12:58:45 -0700247 };
248
mtkleincbdf0072016-08-19 09:05:27 -0700249 // Only Restore, SetMatrix, Concat, and Translate change the CTM.
mtklein8e393bf2014-10-01 12:48:58 -0700250 template <typename T> void updateCTM(const T&) {}
mtkleine9d20522015-11-19 12:08:24 -0800251 void updateCTM(const Restore& op) { fCTM = op.matrix; }
252 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
253 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
mtkleincbdf0072016-08-19 09:05:27 -0700254 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
mtkleina723b572014-08-15 11:49:49 -0700255
mtklein8e393bf2014-10-01 12:48:58 -0700256 // Most ops don't change the clip.
257 template <typename T> void updateClipBounds(const T&) {}
Mike Klein271a0302014-09-23 15:28:38 -0400258
mtklein8e393bf2014-10-01 12:48:58 -0700259 // Clip{Path,RRect,Rect,Region} obviously change the clip. They all know their bounds already.
260 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
261 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
262 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
263 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
Mike Klein271a0302014-09-23 15:28:38 -0400264
mtklein8e393bf2014-10-01 12:48:58 -0700265 // The bounds of clip ops need to be adjusted for the paints of saveLayers they're inside.
266 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
267 Bounds clip = SkRect::Make(devBounds);
Mike Klein271a0302014-09-23 15:28:38 -0400268 // We don't call adjustAndMap() because as its last step it would intersect the adjusted
269 // clip bounds with the previous clip, exactly what we can't do when the clip grows.
schenney23d85932015-03-06 16:20:28 -0800270 if (this->adjustForSaveLayerPaints(&clip)) {
271 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
272 } else {
273 fCurrentClipBounds = fCullRect;
274 }
Mike Klein271a0302014-09-23 15:28:38 -0400275 }
276
mtklein8e393bf2014-10-01 12:48:58 -0700277 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
278 void updateClipBounds(const Restore& op) {
279 // This is just like the clip ops above, but we need to skip the effects (if any) of our
280 // paired saveLayer (if it is one); it has not yet been popped off the save stack. Our
281 // devBounds reflect the state of the world after the saveLayer/restore block is done,
282 // so they are not affected by the saveLayer's paint.
283 const int kSavesToIgnore = 1;
284 Bounds clip = SkRect::Make(op.devBounds);
schenney23d85932015-03-06 16:20:28 -0800285 if (this->adjustForSaveLayerPaints(&clip, kSavesToIgnore)) {
286 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
287 } else {
288 fCurrentClipBounds = fCullRect;
289 }
mtklein8e393bf2014-10-01 12:48:58 -0700290 }
291
Mike Klein271a0302014-09-23 15:28:38 -0400292 // We also take advantage of SaveLayer bounds when present to further cut the clip down.
mtkleina723b572014-08-15 11:49:49 -0700293 void updateClipBounds(const SaveLayer& op) {
294 if (op.bounds) {
Mike Klein271a0302014-09-23 15:28:38 -0400295 // adjustAndMap() intersects these layer bounds with the previous clip for us.
296 fCurrentClipBounds = this->adjustAndMap(*op.bounds, op.paint);
mtkleina723b572014-08-15 11:49:49 -0700297 }
298 }
mtklein6cfa73a2014-08-13 13:33:49 -0700299
mtklein828ce1f2014-08-13 12:58:45 -0700300 // The bounds of these ops must be calculated when we hit the Restore
301 // from the bounds of the ops in the same Save block.
halcanary96fcdcc2015-08-27 07:41:13 -0700302 void trackBounds(const Save&) { this->pushSaveBlock(nullptr); }
mtkleina723b572014-08-15 11:49:49 -0700303 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
304 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700305
mtklein68199a22014-08-25 13:49:29 -0700306 void trackBounds(const SetMatrix&) { this->pushControl(); }
mtkleine9d20522015-11-19 12:08:24 -0800307 void trackBounds(const Concat&) { this->pushControl(); }
mtkleincbdf0072016-08-19 09:05:27 -0700308 void trackBounds(const Translate&) { this->pushControl(); }
309 void trackBounds(const TranslateZ&) { this->pushControl(); }
mtklein68199a22014-08-25 13:49:29 -0700310 void trackBounds(const ClipRect&) { this->pushControl(); }
311 void trackBounds(const ClipRRect&) { this->pushControl(); }
312 void trackBounds(const ClipPath&) { this->pushControl(); }
313 void trackBounds(const ClipRegion&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700314
vjiaoblacke5de1302016-07-13 14:05:28 -0700315
mtklein828ce1f2014-08-13 12:58:45 -0700316 // For all other ops, we can calculate and store the bounds directly now.
317 template <typename T> void trackBounds(const T& op) {
318 fBounds[fCurrentOp] = this->bounds(op);
319 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700320 }
321
mtkleina723b572014-08-15 11:49:49 -0700322 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700323 // Starting a new Save block. Push a new entry to represent that.
robertphillips4d52afe2014-11-03 08:19:44 -0800324 SaveBounds sb;
325 sb.controlOps = 0;
326 // If the paint affects transparent black, the bound shouldn't be smaller
327 // than the current clip bounds.
328 sb.bounds =
329 PaintMayAffectTransparentBlack(paint) ? fCurrentClipBounds : Bounds::MakeEmpty();
330 sb.paint = paint;
senorblancodb64af32015-12-09 10:11:43 -0800331 sb.ctm = this->fCTM;
robertphillips4d52afe2014-11-03 08:19:44 -0800332
mtklein828ce1f2014-08-13 12:58:45 -0700333 fSaveStack.push(sb);
334 this->pushControl();
335 }
336
mtkleind910f542014-08-22 09:06:34 -0700337 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700338 if (paint) {
339 // FIXME: this is very conservative
340 if (paint->getImageFilter() || paint->getColorFilter()) {
341 return true;
342 }
343
Mike Reed18342422016-10-04 10:06:20 -0400344 // Unusual blendmodes require us to process a saved layer
dneto327f9052014-09-15 10:53:16 -0700345 // even with operations outisde the clip.
346 // For example, DstIn is used by masking layers.
347 // https://code.google.com/p/skia/issues/detail?id=1291
348 // https://crbug.com/401593
Mike Reed18342422016-10-04 10:06:20 -0400349 switch (paint->getBlendMode()) {
350 // For each of the following transfer modes, if the source
351 // alpha is zero (our transparent black), the resulting
352 // blended alpha is not necessarily equal to the original
353 // destination alpha.
354 case SkBlendMode::kClear:
355 case SkBlendMode::kSrc:
356 case SkBlendMode::kSrcIn:
357 case SkBlendMode::kDstIn:
358 case SkBlendMode::kSrcOut:
359 case SkBlendMode::kDstATop:
360 case SkBlendMode::kModulate:
361 return true;
362 break;
363 default:
364 break;
dneto327f9052014-09-15 10:53:16 -0700365 }
366 }
367 return false;
mtkleind910f542014-08-22 09:06:34 -0700368 }
369
mtklein533eb782014-08-27 10:39:42 -0700370 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700371 // We're done the Save block. Apply the block's bounds to all control ops inside it.
372 SaveBounds sb;
373 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700374
mtklein828ce1f2014-08-13 12:58:45 -0700375 while (sb.controlOps --> 0) {
robertphillips4d52afe2014-11-03 08:19:44 -0800376 this->popControl(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700377 }
378
379 // This whole Save block may be part another Save block.
robertphillips4d52afe2014-11-03 08:19:44 -0800380 this->updateSaveBounds(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700381
382 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
robertphillips4d52afe2014-11-03 08:19:44 -0800383 return sb.bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700384 }
385
386 void pushControl() {
387 fControlIndices.push(fCurrentOp);
388 if (!fSaveStack.isEmpty()) {
389 fSaveStack.top().controlOps++;
390 }
391 }
392
mtklein533eb782014-08-27 10:39:42 -0700393 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700394 fBounds[fControlIndices.top()] = bounds;
395 fControlIndices.pop();
396 }
397
mtklein533eb782014-08-27 10:39:42 -0700398 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700399 // If we're in a Save block, expand its bounds to cover these bounds too.
400 if (!fSaveStack.isEmpty()) {
401 fSaveStack.top().bounds.join(bounds);
402 }
403 }
404
mtklein131a22b2014-08-25 14:16:15 -0700405 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700406 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700407
mtklein533eb782014-08-27 10:39:42 -0700408 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
409 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700410
mtklein533eb782014-08-27 10:39:42 -0700411 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
msarett44df6512016-08-25 13:54:30 -0700412 Bounds bounds(const DrawRegion& op) const {
413 SkRect rect = SkRect::Make(op.region.getBounds());
414 return this->adjustAndMap(rect, &op.paint);
415 }
mtklein533eb782014-08-27 10:39:42 -0700416 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
bsalomonac3aa242016-08-19 11:25:19 -0700417 // Tighter arc bounds?
418 Bounds bounds(const DrawArc& op) const { return this->adjustAndMap(op.oval, &op.paint); }
mtklein533eb782014-08-27 10:39:42 -0700419 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700420 return this->adjustAndMap(op.rrect.rect(), &op.paint);
421 }
mtklein533eb782014-08-27 10:39:42 -0700422 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700423 return this->adjustAndMap(op.outer.rect(), &op.paint);
424 }
piotaixr65151752014-10-16 11:58:39 -0700425 Bounds bounds(const DrawImage& op) const {
mtkleinda574d12016-08-01 11:24:03 -0700426 const SkImage* image = op.image.get();
piotaixr65151752014-10-16 11:58:39 -0700427 SkRect rect = SkRect::MakeXYWH(op.left, op.top, image->width(), image->height());
mtklein62b67ae2014-08-18 11:10:37 -0700428
piotaixr65151752014-10-16 11:58:39 -0700429 return this->adjustAndMap(rect, op.paint);
430 }
msarettc573a402016-08-02 08:05:56 -0700431 Bounds bounds(const DrawImageLattice& op) const {
432 return this->adjustAndMap(op.dst, op.paint);
433 }
piotaixr65151752014-10-16 11:58:39 -0700434 Bounds bounds(const DrawImageRect& op) const {
435 return this->adjustAndMap(op.dst, op.paint);
436 }
reed4c21dc52015-06-25 12:32:03 -0700437 Bounds bounds(const DrawImageNine& op) const {
438 return this->adjustAndMap(op.dst, op.paint);
439 }
mtklein533eb782014-08-27 10:39:42 -0700440 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700441 return op.path.isInverseFillType() ? fCurrentClipBounds
442 : this->adjustAndMap(op.path.getBounds(), &op.paint);
443 }
mtklein533eb782014-08-27 10:39:42 -0700444 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700445 SkRect dst;
446 dst.set(op.pts, op.count);
447
448 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
449 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
450 dst.outset(stroke/2, stroke/2);
451
452 return this->adjustAndMap(dst, &op.paint);
453 }
mtklein533eb782014-08-27 10:39:42 -0700454 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700455 SkRect dst;
456 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
457 return this->adjustAndMap(dst, &op.paint);
458 }
mtklein533eb782014-08-27 10:39:42 -0700459 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700460 SkRect dst;
461 dst.set(op.vertices, op.vertexCount);
462 return this->adjustAndMap(dst, &op.paint);
463 }
mtklein64b4c782015-07-01 13:56:53 -0700464
reed71c3c762015-06-24 10:29:17 -0700465 Bounds bounds(const DrawAtlas& op) const {
466 if (op.cull) {
reed45561a02016-07-07 12:47:17 -0700467 // TODO: <reed> can we pass nullptr for the paint? Isn't cull already "correct"
468 // for the paint (by the caller)?
reed71c3c762015-06-24 10:29:17 -0700469 return this->adjustAndMap(*op.cull, op.paint);
470 } else {
471 return fCurrentClipBounds;
472 }
473 }
mtklein64b4c782015-07-01 13:56:53 -0700474
mtklein533eb782014-08-27 10:39:42 -0700475 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700476 SkRect dst = op.picture->cullRect();
mtkleinaf579032014-12-01 11:03:37 -0800477 op.matrix.mapRect(&dst);
mtklein131a22b2014-08-25 14:16:15 -0700478 return this->adjustAndMap(dst, op.paint);
479 }
mtklein62b67ae2014-08-18 11:10:37 -0700480
vjiaoblack95302da2016-07-21 10:25:54 -0700481 Bounds bounds(const DrawShadowedPicture& op) const {
482 SkRect dst = op.picture->cullRect();
483 op.matrix.mapRect(&dst);
484 return this->adjustAndMap(dst, op.paint);
485 }
486
mtklein533eb782014-08-27 10:39:42 -0700487 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700488 const int N = op.paint.countText(op.text, op.byteLength);
489 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700490 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700491 }
492
493 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700494 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700495 AdjustTextForFontMetrics(&dst, op.paint);
496 return this->adjustAndMap(dst, &op.paint);
497 }
mtklein533eb782014-08-27 10:39:42 -0700498 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700499 const int N = op.paint.countText(op.text, op.byteLength);
500 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700501 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700502 }
503
504 SkScalar left = op.xpos[0], right = op.xpos[0];
505 for (int i = 1; i < N; i++) {
506 left = SkMinScalar(left, op.xpos[i]);
507 right = SkMaxScalar(right, op.xpos[i]);
508 }
509 SkRect dst = { left, op.y, right, op.y };
510 AdjustTextForFontMetrics(&dst, op.paint);
511 return this->adjustAndMap(dst, &op.paint);
512 }
mtklein533eb782014-08-27 10:39:42 -0700513 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700514 SkRect dst = op.path.getBounds();
515
mtklein9a5380d2014-12-16 06:31:01 -0800516 // Pad all sides by the maximum padding in any direction we'd normally apply.
mtklein131a22b2014-08-25 14:16:15 -0700517 SkRect pad = { 0, 0, 0, 0};
518 AdjustTextForFontMetrics(&pad, op.paint);
mtklein9a5380d2014-12-16 06:31:01 -0800519
520 // That maximum padding happens to always be the right pad today.
521 SkASSERT(pad.fLeft == -pad.fRight);
522 SkASSERT(pad.fTop == -pad.fBottom);
523 SkASSERT(pad.fRight > pad.fBottom);
524 dst.outset(pad.fRight, pad.fRight);
525
mtklein131a22b2014-08-25 14:16:15 -0700526 return this->adjustAndMap(dst, &op.paint);
527 }
528
reed45561a02016-07-07 12:47:17 -0700529 Bounds bounds(const DrawTextRSXform& op) const {
530 if (op.cull) {
531 return this->adjustAndMap(*op.cull, nullptr);
532 } else {
533 return fCurrentClipBounds;
534 }
535 }
536
mtklein533eb782014-08-27 10:39:42 -0700537 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700538 SkRect dst = op.blob->bounds();
539 dst.offset(op.x, op.y);
mtklein131a22b2014-08-25 14:16:15 -0700540 return this->adjustAndMap(dst, &op.paint);
541 }
mtklein62b67ae2014-08-18 11:10:37 -0700542
reed6be2aa92014-11-18 11:08:05 -0800543 Bounds bounds(const DrawDrawable& op) const {
halcanary96fcdcc2015-08-27 07:41:13 -0700544 return this->adjustAndMap(op.worstCaseBounds, nullptr);
reed6be2aa92014-11-18 11:08:05 -0800545 }
546
reedf70b5312016-03-04 16:36:20 -0800547 Bounds bounds(const DrawAnnotation& op) const {
548 return this->adjustAndMap(op.rect, nullptr);
549 }
mtklein343a63d2016-03-22 11:46:53 -0700550
mtklein62b67ae2014-08-18 11:10:37 -0700551 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
mtklein9a5380d2014-12-16 06:31:01 -0800552#ifdef SK_DEBUG
553 SkRect correct = *rect;
554#endif
555 // crbug.com/373785 ~~> xPad = 4x yPad
556 // crbug.com/424824 ~~> bump yPad from 2x text size to 2.5x
557 const SkScalar yPad = 2.5f * paint.getTextSize(),
558 xPad = 4.0f * yPad;
559 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700560#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700561 SkPaint::FontMetrics metrics;
562 paint.getFontMetrics(&metrics);
mtklein9a5380d2014-12-16 06:31:01 -0800563 correct.fLeft += metrics.fXMin;
564 correct.fTop += metrics.fTop;
565 correct.fRight += metrics.fXMax;
566 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700567 // See skia:2862 for why we ignore small text sizes.
mtklein9a5380d2014-12-16 06:31:01 -0800568 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
mtkleined167ac2014-10-29 16:07:10 -0700569 "%f %f %f %f vs. %f %f %f %f\n",
mtklein9a5380d2014-12-16 06:31:01 -0800570 -xPad, -yPad, +xPad, +yPad,
mtkleined167ac2014-10-29 16:07:10 -0700571 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
mtkleina19afb42014-08-19 17:47:14 -0700572#endif
mtklein62b67ae2014-08-18 11:10:37 -0700573 }
574
mtklein479601b2014-08-18 08:45:33 -0700575 // Returns true if rect was meaningfully adjusted for the effects of paint,
576 // false if the paint could affect the rect in unknown ways.
577 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700578 if (paint) {
579 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700580 *rect = paint->computeFastBounds(*rect, rect);
581 return true;
mtkleina723b572014-08-15 11:49:49 -0700582 }
mtklein479601b2014-08-18 08:45:33 -0700583 return false;
584 }
585 return true;
586 }
587
mtklein8e393bf2014-10-01 12:48:58 -0700588 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
589 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
senorblancodb64af32015-12-09 10:11:43 -0800590 SkMatrix inverse;
591 if (!fSaveStack[i].ctm.invert(&inverse)) {
592 return false;
593 }
594 inverse.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400595 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
596 return false;
597 }
senorblancodb64af32015-12-09 10:11:43 -0800598 fSaveStack[i].ctm.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400599 }
600 return true;
601 }
602
mtkleinc6ad06a2015-08-19 09:51:00 -0700603 const int fNumRecords;
mtkleina723b572014-08-15 11:49:49 -0700604
robertphillips4d52afe2014-11-03 08:19:44 -0800605 // We do not guarantee anything for operations outside of the cull rect
606 const SkRect fCullRect;
607
mtklein533eb782014-08-27 10:39:42 -0700608 // Conservative identity-space bounds for each op in the SkRecord.
mtklein40732b32015-10-24 07:45:47 -0700609 Bounds* fBounds;
mtkleina723b572014-08-15 11:49:49 -0700610
611 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
612 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700613 // identity-space bounds of the current clip (fCurrentClipBounds).
mtkleinc6ad06a2015-08-19 09:51:00 -0700614 int fCurrentOp;
mtkleine9d20522015-11-19 12:08:24 -0800615 SkMatrix fCTM;
mtklein533eb782014-08-27 10:39:42 -0700616 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700617
618 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700619 SkTDArray<SaveBounds> fSaveStack;
mtkleinc6ad06a2015-08-19 09:51:00 -0700620 SkTDArray<int> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700621};
622
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000623} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700624
mtklein40732b32015-10-24 07:45:47 -0700625void SkRecordFillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[]) {
626 SkRecords::FillBounds visitor(cullRect, record, bounds);
mtkleinc6ad06a2015-08-19 09:51:00 -0700627 for (int curOp = 0; curOp < record.count(); curOp++) {
robertphillips4e8e3422014-11-12 06:46:08 -0800628 visitor.setCurrentOp(curOp);
mtklein343a63d2016-03-22 11:46:53 -0700629 record.visit(curOp, visitor);
robertphillips4e8e3422014-11-12 06:46:08 -0800630 }
mtklein40732b32015-10-24 07:45:47 -0700631 visitor.cleanUp();
mtklein5ad6ee12014-08-11 08:08:43 -0700632}
robertphillips4e8e3422014-11-12 06:46:08 -0800633