blob: 4d27fb6968337a02931f2ccdd73ffa5ce5b0a8ee [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
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000099DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700100DRAW(DrawImage, drawImage(r.image.get(), r.left, r.top, r.paint));
msarettc573a402016-08-02 08:05:56 -0700101
102template <> void Draw::draw(const DrawImageLattice& r) {
103 SkCanvas::Lattice lattice;
104 lattice.fXCount = r.xCount;
105 lattice.fXDivs = r.xDivs;
106 lattice.fYCount = r.yCount;
107 lattice.fYDivs = r.yDivs;
108 fCanvas->drawImageLattice(r.image.get(), lattice, r.dst, r.paint);
109}
110
mtkleinda574d12016-08-01 11:24:03 -0700111DRAW(DrawImageRect, legacy_drawImageRect(r.image.get(), r.src, r.dst, r.paint, r.constraint));
112DRAW(DrawImageNine, drawImageNine(r.image.get(), r.center, r.dst, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000113DRAW(DrawOval, drawOval(r.oval, r.paint));
114DRAW(DrawPaint, drawPaint(r.paint));
115DRAW(DrawPath, drawPath(r.path, r.paint));
mtklein9b222a52014-09-18 11:16:31 -0700116DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700117DRAW(DrawPicture, drawPicture(r.picture.get(), &r.matrix, r.paint));
vjiaoblack95302da2016-07-21 10:25:54 -0700118
119#ifdef SK_EXPERIMENTAL_SHADOWING
mtkleinda574d12016-08-01 11:24:03 -0700120DRAW(DrawShadowedPicture, drawShadowedPicture(r.picture.get(), &r.matrix, r.paint));
vjiaoblack95302da2016-07-21 10:25:54 -0700121#else
122template <> void Draw::draw(const DrawShadowedPicture& r) { }
123#endif
124
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000125DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
126DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
127DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
128DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
129DRAW(DrawRect, drawRect(r.rect, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000130DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700131DRAW(DrawTextBlob, drawTextBlob(r.blob.get(), r.x, r.y, r.paint));
mtkleinaf579032014-12-01 11:03:37 -0800132DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, &r.matrix, r.paint));
reed45561a02016-07-07 12:47:17 -0700133DRAW(DrawTextRSXform, drawTextRSXform(r.text, r.byteLength, r.xforms, r.cull, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700134DRAW(DrawAtlas, drawAtlas(r.atlas.get(),
135 r.xforms, r.texs, r.colors, r.count, r.mode, r.cull, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000136DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
mtklein449d9b72015-09-28 10:33:02 -0700137 r.xmode, r.indices, r.indexCount, r.paint));
mtkleinda574d12016-08-01 11:24:03 -0700138DRAW(DrawAnnotation, drawAnnotation(r.rect, r.key.c_str(), r.value.get()));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000139#undef DRAW
140
reed6be2aa92014-11-18 11:08:05 -0800141template <> void Draw::draw(const DrawDrawable& r) {
142 SkASSERT(r.index >= 0);
143 SkASSERT(r.index < fDrawableCount);
reed1bdfd3f2014-11-24 14:41:51 -0800144 if (fDrawables) {
halcanary96fcdcc2015-08-27 07:41:13 -0700145 SkASSERT(nullptr == fDrawablePicts);
reeda8db7282015-07-07 10:22:31 -0700146 fCanvas->drawDrawable(fDrawables[r.index], r.matrix);
reed1bdfd3f2014-11-24 14:41:51 -0800147 } else {
halcanary96fcdcc2015-08-27 07:41:13 -0700148 fCanvas->drawPicture(fDrawablePicts[r.index], r.matrix, nullptr);
reed1bdfd3f2014-11-24 14:41:51 -0800149 }
reed6be2aa92014-11-18 11:08:05 -0800150}
151
mtklein5ad6ee12014-08-11 08:08:43 -0700152// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700153//
154// The interesting part here is how to calculate bounds for ops which don't
155// have intrinsic bounds. What is the bounds of a Save or a Translate?
156//
157// We answer this by thinking about a particular definition of bounds: if I
158// don't execute this op, pixels in this rectangle might draw incorrectly. So
159// the bounds of a Save, a Translate, a Restore, etc. are the union of the
160// bounds of Draw* ops that they might have an effect on. For any given
161// Save/Restore block, the bounds of the Save, the Restore, and any other
162// non-drawing ("control") ops inside are exactly the union of the bounds of
163// the drawing ops inside that block.
164//
165// To implement this, we keep a stack of active Save blocks. As we consume ops
166// inside the Save/Restore block, drawing ops are unioned with the bounds of
167// the block, and control ops are stashed away for later. When we finish the
168// block with a Restore, our bounds are complete, and we go back and fill them
169// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700170class FillBounds : SkNoncopyable {
171public:
mtklein40732b32015-10-24 07:45:47 -0700172 FillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[])
robertphillips4e8e3422014-11-12 06:46:08 -0800173 : fNumRecords(record.count())
174 , fCullRect(cullRect)
mtklein40732b32015-10-24 07:45:47 -0700175 , fBounds(bounds) {
mtkleine9d20522015-11-19 12:08:24 -0800176 fCTM = SkMatrix::I();
robertphillips4d52afe2014-11-03 08:19:44 -0800177 fCurrentClipBounds = fCullRect;
robertphillips4e8e3422014-11-12 06:46:08 -0800178 }
mtklein5ad6ee12014-08-11 08:08:43 -0700179
mtklein40732b32015-10-24 07:45:47 -0700180 void cleanUp() {
mtklein828ce1f2014-08-13 12:58:45 -0700181 // If we have any lingering unpaired Saves, simulate restores to make
182 // sure all ops in those Save blocks have their bounds calculated.
183 while (!fSaveStack.isEmpty()) {
184 this->popSaveBlock();
185 }
186
187 // Any control ops not part of any Save/Restore block draw everywhere.
188 while (!fControlIndices.isEmpty()) {
robertphillips4d52afe2014-11-03 08:19:44 -0800189 this->popControl(fCullRect);
mtklein828ce1f2014-08-13 12:58:45 -0700190 }
mtklein828ce1f2014-08-13 12:58:45 -0700191 }
mtklein5ad6ee12014-08-11 08:08:43 -0700192
mtklein40732b32015-10-24 07:45:47 -0700193 void setCurrentOp(int currentOp) { fCurrentOp = currentOp; }
194
195
mtkleina723b572014-08-15 11:49:49 -0700196 template <typename T> void operator()(const T& op) {
197 this->updateCTM(op);
198 this->updateClipBounds(op);
199 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700200 }
201
mtklein533eb782014-08-27 10:39:42 -0700202 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
203 typedef SkRect Bounds;
204
mtkleinc6ad06a2015-08-19 09:51:00 -0700205 int currentOp() const { return fCurrentOp; }
mtkleine9d20522015-11-19 12:08:24 -0800206 const SkMatrix& ctm() const { return fCTM; }
mtkleinc6ad06a2015-08-19 09:51:00 -0700207 const Bounds& getBounds(int index) const { return fBounds[index]; }
robertphillips4e8e3422014-11-12 06:46:08 -0800208
209 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
210 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
211 // Inverted rectangles really confuse our BBHs.
212 rect.sort();
213
214 // Adjust the rect for its own paint.
215 if (!AdjustForPaint(paint, &rect)) {
216 // The paint could do anything to our bounds. The only safe answer is the current clip.
217 return fCurrentClipBounds;
218 }
219
220 // Adjust rect for all the paints from the SaveLayers we're inside.
221 if (!this->adjustForSaveLayerPaints(&rect)) {
222 // Same deal as above.
223 return fCurrentClipBounds;
224 }
225
226 // Map the rect back to identity space.
mtkleine9d20522015-11-19 12:08:24 -0800227 fCTM.mapRect(&rect);
robertphillips4e8e3422014-11-12 06:46:08 -0800228
229 // Nothing can draw outside the current clip.
robertphillipsc187a3c2014-12-30 13:53:51 -0800230 if (!rect.intersect(fCurrentClipBounds)) {
231 return Bounds::MakeEmpty();
232 }
233
robertphillips4e8e3422014-11-12 06:46:08 -0800234 return rect;
235 }
236
237private:
mtklein828ce1f2014-08-13 12:58:45 -0700238 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700239 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700240 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700241 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
senorblancodb64af32015-12-09 10:11:43 -0800242 SkMatrix ctm;
mtklein828ce1f2014-08-13 12:58:45 -0700243 };
244
mtkleincbdf0072016-08-19 09:05:27 -0700245 // Only Restore, SetMatrix, Concat, and Translate change the CTM.
mtklein8e393bf2014-10-01 12:48:58 -0700246 template <typename T> void updateCTM(const T&) {}
mtkleine9d20522015-11-19 12:08:24 -0800247 void updateCTM(const Restore& op) { fCTM = op.matrix; }
248 void updateCTM(const SetMatrix& op) { fCTM = op.matrix; }
249 void updateCTM(const Concat& op) { fCTM.preConcat(op.matrix); }
mtkleincbdf0072016-08-19 09:05:27 -0700250 void updateCTM(const Translate& op) { fCTM.preTranslate(op.dx, op.dy); }
mtkleina723b572014-08-15 11:49:49 -0700251
mtklein8e393bf2014-10-01 12:48:58 -0700252 // Most ops don't change the clip.
253 template <typename T> void updateClipBounds(const T&) {}
Mike Klein271a0302014-09-23 15:28:38 -0400254
mtklein8e393bf2014-10-01 12:48:58 -0700255 // Clip{Path,RRect,Rect,Region} obviously change the clip. They all know their bounds already.
256 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
257 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
258 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
259 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
Mike Klein271a0302014-09-23 15:28:38 -0400260
mtklein8e393bf2014-10-01 12:48:58 -0700261 // The bounds of clip ops need to be adjusted for the paints of saveLayers they're inside.
262 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
263 Bounds clip = SkRect::Make(devBounds);
Mike Klein271a0302014-09-23 15:28:38 -0400264 // We don't call adjustAndMap() because as its last step it would intersect the adjusted
265 // clip bounds with the previous clip, exactly what we can't do when the clip grows.
schenney23d85932015-03-06 16:20:28 -0800266 if (this->adjustForSaveLayerPaints(&clip)) {
267 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
268 } else {
269 fCurrentClipBounds = fCullRect;
270 }
Mike Klein271a0302014-09-23 15:28:38 -0400271 }
272
mtklein8e393bf2014-10-01 12:48:58 -0700273 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
274 void updateClipBounds(const Restore& op) {
275 // This is just like the clip ops above, but we need to skip the effects (if any) of our
276 // paired saveLayer (if it is one); it has not yet been popped off the save stack. Our
277 // devBounds reflect the state of the world after the saveLayer/restore block is done,
278 // so they are not affected by the saveLayer's paint.
279 const int kSavesToIgnore = 1;
280 Bounds clip = SkRect::Make(op.devBounds);
schenney23d85932015-03-06 16:20:28 -0800281 if (this->adjustForSaveLayerPaints(&clip, kSavesToIgnore)) {
282 fCurrentClipBounds = clip.intersect(fCullRect) ? clip : Bounds::MakeEmpty();
283 } else {
284 fCurrentClipBounds = fCullRect;
285 }
mtklein8e393bf2014-10-01 12:48:58 -0700286 }
287
Mike Klein271a0302014-09-23 15:28:38 -0400288 // We also take advantage of SaveLayer bounds when present to further cut the clip down.
mtkleina723b572014-08-15 11:49:49 -0700289 void updateClipBounds(const SaveLayer& op) {
290 if (op.bounds) {
Mike Klein271a0302014-09-23 15:28:38 -0400291 // adjustAndMap() intersects these layer bounds with the previous clip for us.
292 fCurrentClipBounds = this->adjustAndMap(*op.bounds, op.paint);
mtkleina723b572014-08-15 11:49:49 -0700293 }
294 }
mtklein6cfa73a2014-08-13 13:33:49 -0700295
mtklein828ce1f2014-08-13 12:58:45 -0700296 // The bounds of these ops must be calculated when we hit the Restore
297 // from the bounds of the ops in the same Save block.
halcanary96fcdcc2015-08-27 07:41:13 -0700298 void trackBounds(const Save&) { this->pushSaveBlock(nullptr); }
mtkleina723b572014-08-15 11:49:49 -0700299 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
300 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700301
mtklein68199a22014-08-25 13:49:29 -0700302 void trackBounds(const SetMatrix&) { this->pushControl(); }
mtkleine9d20522015-11-19 12:08:24 -0800303 void trackBounds(const Concat&) { this->pushControl(); }
mtkleincbdf0072016-08-19 09:05:27 -0700304 void trackBounds(const Translate&) { this->pushControl(); }
305 void trackBounds(const TranslateZ&) { this->pushControl(); }
mtklein68199a22014-08-25 13:49:29 -0700306 void trackBounds(const ClipRect&) { this->pushControl(); }
307 void trackBounds(const ClipRRect&) { this->pushControl(); }
308 void trackBounds(const ClipPath&) { this->pushControl(); }
309 void trackBounds(const ClipRegion&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700310
vjiaoblacke5de1302016-07-13 14:05:28 -0700311
mtklein828ce1f2014-08-13 12:58:45 -0700312 // For all other ops, we can calculate and store the bounds directly now.
313 template <typename T> void trackBounds(const T& op) {
314 fBounds[fCurrentOp] = this->bounds(op);
315 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700316 }
317
mtkleina723b572014-08-15 11:49:49 -0700318 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700319 // Starting a new Save block. Push a new entry to represent that.
robertphillips4d52afe2014-11-03 08:19:44 -0800320 SaveBounds sb;
321 sb.controlOps = 0;
322 // If the paint affects transparent black, the bound shouldn't be smaller
323 // than the current clip bounds.
324 sb.bounds =
325 PaintMayAffectTransparentBlack(paint) ? fCurrentClipBounds : Bounds::MakeEmpty();
326 sb.paint = paint;
senorblancodb64af32015-12-09 10:11:43 -0800327 sb.ctm = this->fCTM;
robertphillips4d52afe2014-11-03 08:19:44 -0800328
mtklein828ce1f2014-08-13 12:58:45 -0700329 fSaveStack.push(sb);
330 this->pushControl();
331 }
332
mtkleind910f542014-08-22 09:06:34 -0700333 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700334 if (paint) {
335 // FIXME: this is very conservative
336 if (paint->getImageFilter() || paint->getColorFilter()) {
337 return true;
338 }
339
340 // Unusual Xfermodes require us to process a saved layer
341 // even with operations outisde the clip.
342 // For example, DstIn is used by masking layers.
343 // https://code.google.com/p/skia/issues/detail?id=1291
344 // https://crbug.com/401593
345 SkXfermode* xfermode = paint->getXfermode();
346 SkXfermode::Mode mode;
halcanary96fcdcc2015-08-27 07:41:13 -0700347 // SrcOver is ok, and is also the common case with a nullptr xfermode.
dneto327f9052014-09-15 10:53:16 -0700348 // So we should make that the fast path and bypass the mode extraction
349 // and test.
350 if (xfermode && xfermode->asMode(&mode)) {
351 switch (mode) {
352 // For each of the following transfer modes, if the source
353 // alpha is zero (our transparent black), the resulting
354 // blended alpha is not necessarily equal to the original
355 // destination alpha.
356 case SkXfermode::kClear_Mode:
357 case SkXfermode::kSrc_Mode:
358 case SkXfermode::kSrcIn_Mode:
359 case SkXfermode::kDstIn_Mode:
360 case SkXfermode::kSrcOut_Mode:
361 case SkXfermode::kDstATop_Mode:
362 case SkXfermode::kModulate_Mode:
363 return true;
364 break;
365 default:
366 break;
367 }
368 }
369 }
370 return false;
mtkleind910f542014-08-22 09:06:34 -0700371 }
372
mtklein533eb782014-08-27 10:39:42 -0700373 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700374 // We're done the Save block. Apply the block's bounds to all control ops inside it.
375 SaveBounds sb;
376 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700377
mtklein828ce1f2014-08-13 12:58:45 -0700378 while (sb.controlOps --> 0) {
robertphillips4d52afe2014-11-03 08:19:44 -0800379 this->popControl(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700380 }
381
382 // This whole Save block may be part another Save block.
robertphillips4d52afe2014-11-03 08:19:44 -0800383 this->updateSaveBounds(sb.bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700384
385 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
robertphillips4d52afe2014-11-03 08:19:44 -0800386 return sb.bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700387 }
388
389 void pushControl() {
390 fControlIndices.push(fCurrentOp);
391 if (!fSaveStack.isEmpty()) {
392 fSaveStack.top().controlOps++;
393 }
394 }
395
mtklein533eb782014-08-27 10:39:42 -0700396 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700397 fBounds[fControlIndices.top()] = bounds;
398 fControlIndices.pop();
399 }
400
mtklein533eb782014-08-27 10:39:42 -0700401 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700402 // If we're in a Save block, expand its bounds to cover these bounds too.
403 if (!fSaveStack.isEmpty()) {
404 fSaveStack.top().bounds.join(bounds);
405 }
406 }
407
mtklein131a22b2014-08-25 14:16:15 -0700408 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700409 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700410
mtklein533eb782014-08-27 10:39:42 -0700411 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
412 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700413
mtklein533eb782014-08-27 10:39:42 -0700414 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
415 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
416 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700417 return this->adjustAndMap(op.rrect.rect(), &op.paint);
418 }
mtklein533eb782014-08-27 10:39:42 -0700419 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700420 return this->adjustAndMap(op.outer.rect(), &op.paint);
421 }
piotaixr65151752014-10-16 11:58:39 -0700422 Bounds bounds(const DrawImage& op) const {
mtkleinda574d12016-08-01 11:24:03 -0700423 const SkImage* image = op.image.get();
piotaixr65151752014-10-16 11:58:39 -0700424 SkRect rect = SkRect::MakeXYWH(op.left, op.top, image->width(), image->height());
mtklein62b67ae2014-08-18 11:10:37 -0700425
piotaixr65151752014-10-16 11:58:39 -0700426 return this->adjustAndMap(rect, op.paint);
427 }
msarettc573a402016-08-02 08:05:56 -0700428 Bounds bounds(const DrawImageLattice& op) const {
429 return this->adjustAndMap(op.dst, op.paint);
430 }
piotaixr65151752014-10-16 11:58:39 -0700431 Bounds bounds(const DrawImageRect& op) const {
432 return this->adjustAndMap(op.dst, op.paint);
433 }
reed4c21dc52015-06-25 12:32:03 -0700434 Bounds bounds(const DrawImageNine& op) const {
435 return this->adjustAndMap(op.dst, op.paint);
436 }
mtklein533eb782014-08-27 10:39:42 -0700437 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700438 return op.path.isInverseFillType() ? fCurrentClipBounds
439 : this->adjustAndMap(op.path.getBounds(), &op.paint);
440 }
mtklein533eb782014-08-27 10:39:42 -0700441 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700442 SkRect dst;
443 dst.set(op.pts, op.count);
444
445 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
446 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
447 dst.outset(stroke/2, stroke/2);
448
449 return this->adjustAndMap(dst, &op.paint);
450 }
mtklein533eb782014-08-27 10:39:42 -0700451 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700452 SkRect dst;
453 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
454 return this->adjustAndMap(dst, &op.paint);
455 }
mtklein533eb782014-08-27 10:39:42 -0700456 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700457 SkRect dst;
458 dst.set(op.vertices, op.vertexCount);
459 return this->adjustAndMap(dst, &op.paint);
460 }
mtklein64b4c782015-07-01 13:56:53 -0700461
reed71c3c762015-06-24 10:29:17 -0700462 Bounds bounds(const DrawAtlas& op) const {
463 if (op.cull) {
reed45561a02016-07-07 12:47:17 -0700464 // TODO: <reed> can we pass nullptr for the paint? Isn't cull already "correct"
465 // for the paint (by the caller)?
reed71c3c762015-06-24 10:29:17 -0700466 return this->adjustAndMap(*op.cull, op.paint);
467 } else {
468 return fCurrentClipBounds;
469 }
470 }
mtklein64b4c782015-07-01 13:56:53 -0700471
mtklein533eb782014-08-27 10:39:42 -0700472 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700473 SkRect dst = op.picture->cullRect();
mtkleinaf579032014-12-01 11:03:37 -0800474 op.matrix.mapRect(&dst);
mtklein131a22b2014-08-25 14:16:15 -0700475 return this->adjustAndMap(dst, op.paint);
476 }
mtklein62b67ae2014-08-18 11:10:37 -0700477
vjiaoblack95302da2016-07-21 10:25:54 -0700478 Bounds bounds(const DrawShadowedPicture& op) const {
479 SkRect dst = op.picture->cullRect();
480 op.matrix.mapRect(&dst);
481 return this->adjustAndMap(dst, op.paint);
482 }
483
mtklein533eb782014-08-27 10:39:42 -0700484 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700485 const int N = op.paint.countText(op.text, op.byteLength);
486 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700487 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700488 }
489
490 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700491 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700492 AdjustTextForFontMetrics(&dst, op.paint);
493 return this->adjustAndMap(dst, &op.paint);
494 }
mtklein533eb782014-08-27 10:39:42 -0700495 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700496 const int N = op.paint.countText(op.text, op.byteLength);
497 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700498 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700499 }
500
501 SkScalar left = op.xpos[0], right = op.xpos[0];
502 for (int i = 1; i < N; i++) {
503 left = SkMinScalar(left, op.xpos[i]);
504 right = SkMaxScalar(right, op.xpos[i]);
505 }
506 SkRect dst = { left, op.y, right, op.y };
507 AdjustTextForFontMetrics(&dst, op.paint);
508 return this->adjustAndMap(dst, &op.paint);
509 }
mtklein533eb782014-08-27 10:39:42 -0700510 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700511 SkRect dst = op.path.getBounds();
512
mtklein9a5380d2014-12-16 06:31:01 -0800513 // Pad all sides by the maximum padding in any direction we'd normally apply.
mtklein131a22b2014-08-25 14:16:15 -0700514 SkRect pad = { 0, 0, 0, 0};
515 AdjustTextForFontMetrics(&pad, op.paint);
mtklein9a5380d2014-12-16 06:31:01 -0800516
517 // That maximum padding happens to always be the right pad today.
518 SkASSERT(pad.fLeft == -pad.fRight);
519 SkASSERT(pad.fTop == -pad.fBottom);
520 SkASSERT(pad.fRight > pad.fBottom);
521 dst.outset(pad.fRight, pad.fRight);
522
mtklein131a22b2014-08-25 14:16:15 -0700523 return this->adjustAndMap(dst, &op.paint);
524 }
525
reed45561a02016-07-07 12:47:17 -0700526 Bounds bounds(const DrawTextRSXform& op) const {
527 if (op.cull) {
528 return this->adjustAndMap(*op.cull, nullptr);
529 } else {
530 return fCurrentClipBounds;
531 }
532 }
533
mtklein533eb782014-08-27 10:39:42 -0700534 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700535 SkRect dst = op.blob->bounds();
536 dst.offset(op.x, op.y);
mtklein131a22b2014-08-25 14:16:15 -0700537 return this->adjustAndMap(dst, &op.paint);
538 }
mtklein62b67ae2014-08-18 11:10:37 -0700539
reed6be2aa92014-11-18 11:08:05 -0800540 Bounds bounds(const DrawDrawable& op) const {
halcanary96fcdcc2015-08-27 07:41:13 -0700541 return this->adjustAndMap(op.worstCaseBounds, nullptr);
reed6be2aa92014-11-18 11:08:05 -0800542 }
543
reedf70b5312016-03-04 16:36:20 -0800544 Bounds bounds(const DrawAnnotation& op) const {
545 return this->adjustAndMap(op.rect, nullptr);
546 }
mtklein343a63d2016-03-22 11:46:53 -0700547
mtklein62b67ae2014-08-18 11:10:37 -0700548 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
mtklein9a5380d2014-12-16 06:31:01 -0800549#ifdef SK_DEBUG
550 SkRect correct = *rect;
551#endif
552 // crbug.com/373785 ~~> xPad = 4x yPad
553 // crbug.com/424824 ~~> bump yPad from 2x text size to 2.5x
554 const SkScalar yPad = 2.5f * paint.getTextSize(),
555 xPad = 4.0f * yPad;
556 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700557#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700558 SkPaint::FontMetrics metrics;
559 paint.getFontMetrics(&metrics);
mtklein9a5380d2014-12-16 06:31:01 -0800560 correct.fLeft += metrics.fXMin;
561 correct.fTop += metrics.fTop;
562 correct.fRight += metrics.fXMax;
563 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700564 // See skia:2862 for why we ignore small text sizes.
mtklein9a5380d2014-12-16 06:31:01 -0800565 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
mtkleined167ac2014-10-29 16:07:10 -0700566 "%f %f %f %f vs. %f %f %f %f\n",
mtklein9a5380d2014-12-16 06:31:01 -0800567 -xPad, -yPad, +xPad, +yPad,
mtkleined167ac2014-10-29 16:07:10 -0700568 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
mtkleina19afb42014-08-19 17:47:14 -0700569#endif
mtklein62b67ae2014-08-18 11:10:37 -0700570 }
571
mtklein479601b2014-08-18 08:45:33 -0700572 // Returns true if rect was meaningfully adjusted for the effects of paint,
573 // false if the paint could affect the rect in unknown ways.
574 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700575 if (paint) {
576 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700577 *rect = paint->computeFastBounds(*rect, rect);
578 return true;
mtkleina723b572014-08-15 11:49:49 -0700579 }
mtklein479601b2014-08-18 08:45:33 -0700580 return false;
581 }
582 return true;
583 }
584
mtklein8e393bf2014-10-01 12:48:58 -0700585 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
586 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
senorblancodb64af32015-12-09 10:11:43 -0800587 SkMatrix inverse;
588 if (!fSaveStack[i].ctm.invert(&inverse)) {
589 return false;
590 }
591 inverse.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400592 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
593 return false;
594 }
senorblancodb64af32015-12-09 10:11:43 -0800595 fSaveStack[i].ctm.mapRect(rect);
Mike Klein271a0302014-09-23 15:28:38 -0400596 }
597 return true;
598 }
599
mtkleinc6ad06a2015-08-19 09:51:00 -0700600 const int fNumRecords;
mtkleina723b572014-08-15 11:49:49 -0700601
robertphillips4d52afe2014-11-03 08:19:44 -0800602 // We do not guarantee anything for operations outside of the cull rect
603 const SkRect fCullRect;
604
mtklein533eb782014-08-27 10:39:42 -0700605 // Conservative identity-space bounds for each op in the SkRecord.
mtklein40732b32015-10-24 07:45:47 -0700606 Bounds* fBounds;
mtkleina723b572014-08-15 11:49:49 -0700607
608 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
609 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700610 // identity-space bounds of the current clip (fCurrentClipBounds).
mtkleinc6ad06a2015-08-19 09:51:00 -0700611 int fCurrentOp;
mtkleine9d20522015-11-19 12:08:24 -0800612 SkMatrix fCTM;
mtklein533eb782014-08-27 10:39:42 -0700613 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700614
615 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700616 SkTDArray<SaveBounds> fSaveStack;
mtkleinc6ad06a2015-08-19 09:51:00 -0700617 SkTDArray<int> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700618};
619
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000620} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700621
mtklein40732b32015-10-24 07:45:47 -0700622void SkRecordFillBounds(const SkRect& cullRect, const SkRecord& record, SkRect bounds[]) {
623 SkRecords::FillBounds visitor(cullRect, record, bounds);
mtkleinc6ad06a2015-08-19 09:51:00 -0700624 for (int curOp = 0; curOp < record.count(); curOp++) {
robertphillips4e8e3422014-11-12 06:46:08 -0800625 visitor.setCurrentOp(curOp);
mtklein343a63d2016-03-22 11:46:53 -0700626 record.visit(curOp, visitor);
robertphillips4e8e3422014-11-12 06:46:08 -0800627 }
mtklein40732b32015-10-24 07:45:47 -0700628 visitor.cleanUp();
mtklein5ad6ee12014-08-11 08:08:43 -0700629}
robertphillips4e8e3422014-11-12 06:46:08 -0800630