blob: 13b06b5efc416ec00f14574c6ebe79d33f28c95f [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,
13 const SkBBoxHierarchy* bbh,
14 SkDrawPictureCallback* callback) {
Mike Kleinc11530e2014-06-24 11:29:06 -040015 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
mtklein5ad6ee12014-08-11 08:08:43 -070016
bsalomon49f085d2014-09-05 13:34:00 -070017 if (bbh) {
mtklein5ad6ee12014-08-11 08:08:43 -070018 // Draw only ops that affect pixels in the canvas's current clip.
mtklein3e8232b2014-08-18 13:39:11 -070019 // The SkRecord and BBH were recorded in identity space. This canvas
20 // is not necessarily in that same space. getClipBounds() returns us
21 // this canvas' clip bounds transformed back into identity space, which
22 // lets us query the BBH.
mtklein533eb782014-08-27 10:39:42 -070023 SkRect query = { 0, 0, 0, 0 };
24 (void)canvas->getClipBounds(&query);
mtklein3e8232b2014-08-18 13:39:11 -070025
mtklein6bd41962014-10-02 07:41:56 -070026 SkTDArray<unsigned> ops;
mtkleina723b572014-08-15 11:49:49 -070027 bbh->search(query, &ops);
mtklein5ad6ee12014-08-11 08:08:43 -070028
mtklein5ad6ee12014-08-11 08:08:43 -070029 SkRecords::Draw draw(canvas);
30 for (int i = 0; i < ops.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070031 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070032 return;
33 }
mtklein6bd41962014-10-02 07:41:56 -070034 record.visit<void>(ops[i], draw);
mtklein5ad6ee12014-08-11 08:08:43 -070035 }
36 } else {
37 // Draw all ops.
mtklein00f30bd2014-09-02 12:03:31 -070038 SkRecords::Draw draw(canvas);
39 for (unsigned i = 0; i < record.count(); i++) {
bsalomon49f085d2014-09-05 13:34:00 -070040 if (callback && callback->abortDrawing()) {
mtklein5ad6ee12014-08-11 08:08:43 -070041 return;
42 }
mtklein00f30bd2014-09-02 12:03:31 -070043 record.visit<void>(i, draw);
mtklein5ad6ee12014-08-11 08:08:43 -070044 }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000045 }
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000046}
commit-bot@chromium.orgd9ce2be2014-04-09 23:30:28 +000047
mtklein00f30bd2014-09-02 12:03:31 -070048void SkRecordPartialDraw(const SkRecord& record,
49 SkCanvas* canvas,
50 const SkRect& clearRect,
robertphillips4815fe52014-09-16 10:32:43 -070051 unsigned start, unsigned stop,
52 const SkMatrix& initialCTM) {
mtklein00f30bd2014-09-02 12:03:31 -070053 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
54
55 stop = SkTMin(stop, record.count());
robertphillips4815fe52014-09-16 10:32:43 -070056 SkRecords::PartialDraw draw(canvas, clearRect, initialCTM);
mtklein00f30bd2014-09-02 12:03:31 -070057 for (unsigned i = start; i < stop; i++) {
58 record.visit<void>(i, draw);
59 }
60}
61
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000062namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000063
mtklein7cdc1ee2014-07-07 10:41:04 -070064// FIXME: SkBitmaps are stateful, so we need to copy them to play back in multiple threads.
65static SkBitmap shallow_copy(const SkBitmap& bitmap) {
66 return bitmap;
67}
68
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000069// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000070template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000071
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000072#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000073DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040074DRAW(Save, save());
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000075DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
76DRAW(PopCull, popCull());
commit-bot@chromium.org88c3e272014-04-22 16:57:20 +000077DRAW(PushCull, pushCull(r.rect));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000078DRAW(Clear, clear(r.color));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000079DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000080
81DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
82DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
83DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
84DRAW(ClipRegion, clipRegion(r.region, r.op));
85
mtklein5f0e8222014-08-22 11:44:26 -070086DRAW(BeginCommentGroup, beginCommentGroup(r.description));
87DRAW(AddComment, addComment(r.key, r.value));
88DRAW(EndCommentGroup, endCommentGroup());
89
mtklein7cdc1ee2014-07-07 10:41:04 -070090DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
91DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
92DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
93DRAW(DrawBitmapRectToRect,
94 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint, r.flags));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000095DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
96DRAW(DrawOval, drawOval(r.oval, r.paint));
97DRAW(DrawPaint, drawPaint(r.paint));
98DRAW(DrawPath, drawPath(r.path, r.paint));
mtklein9b222a52014-09-18 11:16:31 -070099DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode, r.paint));
reedd5fa1a42014-08-09 11:08:05 -0700100DRAW(DrawPicture, drawPicture(r.picture, r.matrix, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000101DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
102DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
103DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
104DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
105DRAW(DrawRect, drawRect(r.rect, r.paint));
mtklein7cdc1ee2014-07-07 10:41:04 -0700106DRAW(DrawSprite, drawSprite(shallow_copy(r.bitmap), r.left, r.top, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000107DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
fmalita00d5c2c2014-08-21 08:53:26 -0700108DRAW(DrawTextBlob, drawTextBlob(r.blob, r.x, r.y, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000109DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
110DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
111 r.xmode.get(), r.indices, r.indexCount, r.paint));
mtklein29dfaa82014-09-04 14:12:44 -0700112DRAW(DrawData, drawData(r.data, r.length));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000113#undef DRAW
114
mtklein5ad6ee12014-08-11 08:08:43 -0700115
116// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700117//
118// The interesting part here is how to calculate bounds for ops which don't
119// have intrinsic bounds. What is the bounds of a Save or a Translate?
120//
121// We answer this by thinking about a particular definition of bounds: if I
122// don't execute this op, pixels in this rectangle might draw incorrectly. So
123// the bounds of a Save, a Translate, a Restore, etc. are the union of the
124// bounds of Draw* ops that they might have an effect on. For any given
125// Save/Restore block, the bounds of the Save, the Restore, and any other
126// non-drawing ("control") ops inside are exactly the union of the bounds of
127// the drawing ops inside that block.
128//
129// To implement this, we keep a stack of active Save blocks. As we consume ops
130// inside the Save/Restore block, drawing ops are unioned with the bounds of
131// the block, and control ops are stashed away for later. When we finish the
132// block with a Restore, our bounds are complete, and we go back and fill them
133// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700134class FillBounds : SkNoncopyable {
135public:
mtklein828ce1f2014-08-13 12:58:45 -0700136 FillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) : fBounds(record.count()) {
137 // Calculate bounds for all ops. This won't go quite in order, so we'll need
138 // to store the bounds separately then feed them in to the BBH later in order.
mtklein533eb782014-08-27 10:39:42 -0700139 const Bounds largest = Bounds::MakeLargest();
mtklein6332f1d2014-08-19 07:09:40 -0700140 fCTM = &SkMatrix::I();
mtkleina723b572014-08-15 11:49:49 -0700141 fCurrentClipBounds = largest;
mtklein828ce1f2014-08-13 12:58:45 -0700142 for (fCurrentOp = 0; fCurrentOp < record.count(); fCurrentOp++) {
143 record.visit<void>(fCurrentOp, *this);
144 }
mtklein5ad6ee12014-08-11 08:08:43 -0700145
mtklein828ce1f2014-08-13 12:58:45 -0700146 // If we have any lingering unpaired Saves, simulate restores to make
147 // sure all ops in those Save blocks have their bounds calculated.
148 while (!fSaveStack.isEmpty()) {
149 this->popSaveBlock();
150 }
151
152 // Any control ops not part of any Save/Restore block draw everywhere.
153 while (!fControlIndices.isEmpty()) {
mtkleina723b572014-08-15 11:49:49 -0700154 this->popControl(largest);
mtklein828ce1f2014-08-13 12:58:45 -0700155 }
156
157 // Finally feed all stored bounds into the BBH. They'll be returned in this order.
bsalomon49f085d2014-09-05 13:34:00 -0700158 SkASSERT(bbh);
mtklein6bd41962014-10-02 07:41:56 -0700159 for (unsigned i = 0; i < record.count(); i++) {
mtklein828ce1f2014-08-13 12:58:45 -0700160 if (!fBounds[i].isEmpty()) {
mtklein6bd41962014-10-02 07:41:56 -0700161 bbh->insert(i, fBounds[i], true/*ok to defer*/);
mtklein828ce1f2014-08-13 12:58:45 -0700162 }
163 }
164 bbh->flushDeferredInserts();
165 }
mtklein5ad6ee12014-08-11 08:08:43 -0700166
mtkleina723b572014-08-15 11:49:49 -0700167 template <typename T> void operator()(const T& op) {
168 this->updateCTM(op);
169 this->updateClipBounds(op);
170 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700171 }
172
173private:
mtklein533eb782014-08-27 10:39:42 -0700174 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
175 typedef SkRect Bounds;
176
mtklein828ce1f2014-08-13 12:58:45 -0700177 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700178 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700179 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700180 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
mtklein828ce1f2014-08-13 12:58:45 -0700181 };
182
mtklein8e393bf2014-10-01 12:48:58 -0700183 // Only Restore and SetMatrix change the CTM.
184 template <typename T> void updateCTM(const T&) {}
mtklein6332f1d2014-08-19 07:09:40 -0700185 void updateCTM(const Restore& op) { fCTM = &op.matrix; }
186 void updateCTM(const SetMatrix& op) { fCTM = &op.matrix; }
mtkleina723b572014-08-15 11:49:49 -0700187
mtklein8e393bf2014-10-01 12:48:58 -0700188 // Most ops don't change the clip.
189 template <typename T> void updateClipBounds(const T&) {}
Mike Klein271a0302014-09-23 15:28:38 -0400190
mtklein8e393bf2014-10-01 12:48:58 -0700191 // Clip{Path,RRect,Rect,Region} obviously change the clip. They all know their bounds already.
192 void updateClipBounds(const ClipPath& op) { this->updateClipBoundsForClipOp(op.devBounds); }
193 void updateClipBounds(const ClipRRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
194 void updateClipBounds(const ClipRect& op) { this->updateClipBoundsForClipOp(op.devBounds); }
195 void updateClipBounds(const ClipRegion& op) { this->updateClipBoundsForClipOp(op.devBounds); }
Mike Klein271a0302014-09-23 15:28:38 -0400196
mtklein8e393bf2014-10-01 12:48:58 -0700197 // The bounds of clip ops need to be adjusted for the paints of saveLayers they're inside.
198 void updateClipBoundsForClipOp(const SkIRect& devBounds) {
199 Bounds clip = SkRect::Make(devBounds);
Mike Klein271a0302014-09-23 15:28:38 -0400200 // We don't call adjustAndMap() because as its last step it would intersect the adjusted
201 // clip bounds with the previous clip, exactly what we can't do when the clip grows.
202 fCurrentClipBounds = this->adjustForSaveLayerPaints(&clip) ? clip : Bounds::MakeLargest();
203 }
204
mtklein8e393bf2014-10-01 12:48:58 -0700205 // Restore holds the devBounds for the clip after the {save,saveLayer}/restore block completes.
206 void updateClipBounds(const Restore& op) {
207 // This is just like the clip ops above, but we need to skip the effects (if any) of our
208 // paired saveLayer (if it is one); it has not yet been popped off the save stack. Our
209 // devBounds reflect the state of the world after the saveLayer/restore block is done,
210 // so they are not affected by the saveLayer's paint.
211 const int kSavesToIgnore = 1;
212 Bounds clip = SkRect::Make(op.devBounds);
213 fCurrentClipBounds =
214 this->adjustForSaveLayerPaints(&clip, kSavesToIgnore) ? clip : Bounds::MakeLargest();
215 }
216
Mike Klein271a0302014-09-23 15:28:38 -0400217 // We also take advantage of SaveLayer bounds when present to further cut the clip down.
mtkleina723b572014-08-15 11:49:49 -0700218 void updateClipBounds(const SaveLayer& op) {
219 if (op.bounds) {
Mike Klein271a0302014-09-23 15:28:38 -0400220 // adjustAndMap() intersects these layer bounds with the previous clip for us.
221 fCurrentClipBounds = this->adjustAndMap(*op.bounds, op.paint);
mtkleina723b572014-08-15 11:49:49 -0700222 }
223 }
mtklein6cfa73a2014-08-13 13:33:49 -0700224
mtklein828ce1f2014-08-13 12:58:45 -0700225 // The bounds of these ops must be calculated when we hit the Restore
226 // from the bounds of the ops in the same Save block.
mtkleina723b572014-08-15 11:49:49 -0700227 void trackBounds(const Save&) { this->pushSaveBlock(NULL); }
mtkleina723b572014-08-15 11:49:49 -0700228 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
229 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700230
mtklein68199a22014-08-25 13:49:29 -0700231 void trackBounds(const SetMatrix&) { this->pushControl(); }
232 void trackBounds(const ClipRect&) { this->pushControl(); }
233 void trackBounds(const ClipRRect&) { this->pushControl(); }
234 void trackBounds(const ClipPath&) { this->pushControl(); }
235 void trackBounds(const ClipRegion&) { this->pushControl(); }
236 void trackBounds(const PushCull&) { this->pushControl(); }
237 void trackBounds(const PopCull&) { this->pushControl(); }
238 void trackBounds(const BeginCommentGroup&) { this->pushControl(); }
239 void trackBounds(const AddComment&) { this->pushControl(); }
240 void trackBounds(const EndCommentGroup&) { this->pushControl(); }
mtklein29dfaa82014-09-04 14:12:44 -0700241 void trackBounds(const DrawData&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700242
243 // For all other ops, we can calculate and store the bounds directly now.
244 template <typename T> void trackBounds(const T& op) {
245 fBounds[fCurrentOp] = this->bounds(op);
246 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700247 }
248
mtkleina723b572014-08-15 11:49:49 -0700249 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700250 // Starting a new Save block. Push a new entry to represent that.
mtklein533eb782014-08-27 10:39:42 -0700251 SaveBounds sb = { 0, Bounds::MakeEmpty(), paint };
mtklein828ce1f2014-08-13 12:58:45 -0700252 fSaveStack.push(sb);
253 this->pushControl();
254 }
255
mtkleind910f542014-08-22 09:06:34 -0700256 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700257 if (paint) {
258 // FIXME: this is very conservative
259 if (paint->getImageFilter() || paint->getColorFilter()) {
260 return true;
261 }
262
263 // Unusual Xfermodes require us to process a saved layer
264 // even with operations outisde the clip.
265 // For example, DstIn is used by masking layers.
266 // https://code.google.com/p/skia/issues/detail?id=1291
267 // https://crbug.com/401593
268 SkXfermode* xfermode = paint->getXfermode();
269 SkXfermode::Mode mode;
270 // SrcOver is ok, and is also the common case with a NULL xfermode.
271 // So we should make that the fast path and bypass the mode extraction
272 // and test.
273 if (xfermode && xfermode->asMode(&mode)) {
274 switch (mode) {
275 // For each of the following transfer modes, if the source
276 // alpha is zero (our transparent black), the resulting
277 // blended alpha is not necessarily equal to the original
278 // destination alpha.
279 case SkXfermode::kClear_Mode:
280 case SkXfermode::kSrc_Mode:
281 case SkXfermode::kSrcIn_Mode:
282 case SkXfermode::kDstIn_Mode:
283 case SkXfermode::kSrcOut_Mode:
284 case SkXfermode::kDstATop_Mode:
285 case SkXfermode::kModulate_Mode:
286 return true;
287 break;
288 default:
289 break;
290 }
291 }
292 }
293 return false;
mtkleind910f542014-08-22 09:06:34 -0700294 }
295
mtklein533eb782014-08-27 10:39:42 -0700296 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700297 // We're done the Save block. Apply the block's bounds to all control ops inside it.
298 SaveBounds sb;
299 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700300
301 // If the paint affects transparent black, we can't trust any of our calculated bounds.
mtklein533eb782014-08-27 10:39:42 -0700302 const Bounds& bounds =
mtkleind910f542014-08-22 09:06:34 -0700303 PaintMayAffectTransparentBlack(sb.paint) ? fCurrentClipBounds : sb.bounds;
304
mtklein828ce1f2014-08-13 12:58:45 -0700305 while (sb.controlOps --> 0) {
mtkleind910f542014-08-22 09:06:34 -0700306 this->popControl(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700307 }
308
309 // This whole Save block may be part another Save block.
mtkleind910f542014-08-22 09:06:34 -0700310 this->updateSaveBounds(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700311
312 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
mtkleind910f542014-08-22 09:06:34 -0700313 return bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700314 }
315
316 void pushControl() {
317 fControlIndices.push(fCurrentOp);
318 if (!fSaveStack.isEmpty()) {
319 fSaveStack.top().controlOps++;
320 }
321 }
322
mtklein533eb782014-08-27 10:39:42 -0700323 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700324 fBounds[fControlIndices.top()] = bounds;
325 fControlIndices.pop();
326 }
327
mtklein533eb782014-08-27 10:39:42 -0700328 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700329 // If we're in a Save block, expand its bounds to cover these bounds too.
330 if (!fSaveStack.isEmpty()) {
331 fSaveStack.top().bounds.join(bounds);
332 }
333 }
334
mtklein131a22b2014-08-25 14:16:15 -0700335 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700336 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700337
mtklein533eb782014-08-27 10:39:42 -0700338 Bounds bounds(const Clear&) const { return Bounds::MakeLargest(); } // Ignores the clip.
339 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
340 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700341
mtklein533eb782014-08-27 10:39:42 -0700342 Bounds bounds(const DrawSprite& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700343 const SkBitmap& bm = op.bitmap;
mtklein533eb782014-08-27 10:39:42 -0700344 return Bounds::MakeXYWH(op.left, op.top, bm.width(), bm.height()); // Ignores the matrix.
mtklein131a22b2014-08-25 14:16:15 -0700345 }
346
mtklein533eb782014-08-27 10:39:42 -0700347 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
348 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
349 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700350 return this->adjustAndMap(op.rrect.rect(), &op.paint);
351 }
mtklein533eb782014-08-27 10:39:42 -0700352 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700353 return this->adjustAndMap(op.outer.rect(), &op.paint);
354 }
355
mtklein533eb782014-08-27 10:39:42 -0700356 Bounds bounds(const DrawBitmapRectToRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700357 return this->adjustAndMap(op.dst, op.paint);
358 }
mtklein533eb782014-08-27 10:39:42 -0700359 Bounds bounds(const DrawBitmapNine& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700360 return this->adjustAndMap(op.dst, op.paint);
361 }
mtklein533eb782014-08-27 10:39:42 -0700362 Bounds bounds(const DrawBitmap& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700363 const SkBitmap& bm = op.bitmap;
364 return this->adjustAndMap(SkRect::MakeXYWH(op.left, op.top, bm.width(), bm.height()),
365 op.paint);
366 }
mtklein533eb782014-08-27 10:39:42 -0700367 Bounds bounds(const DrawBitmapMatrix& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700368 const SkBitmap& bm = op.bitmap;
369 SkRect dst = SkRect::MakeWH(bm.width(), bm.height());
370 op.matrix.mapRect(&dst);
371 return this->adjustAndMap(dst, op.paint);
372 }
373
mtklein533eb782014-08-27 10:39:42 -0700374 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700375 return op.path.isInverseFillType() ? fCurrentClipBounds
376 : this->adjustAndMap(op.path.getBounds(), &op.paint);
377 }
mtklein533eb782014-08-27 10:39:42 -0700378 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700379 SkRect dst;
380 dst.set(op.pts, op.count);
381
382 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
383 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
384 dst.outset(stroke/2, stroke/2);
385
386 return this->adjustAndMap(dst, &op.paint);
387 }
mtklein533eb782014-08-27 10:39:42 -0700388 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700389 SkRect dst;
390 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
391 return this->adjustAndMap(dst, &op.paint);
392 }
mtklein533eb782014-08-27 10:39:42 -0700393 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700394 SkRect dst;
395 dst.set(op.vertices, op.vertexCount);
396 return this->adjustAndMap(dst, &op.paint);
397 }
398
mtklein533eb782014-08-27 10:39:42 -0700399 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700400 SkRect dst = op.picture->cullRect();
mtklein131a22b2014-08-25 14:16:15 -0700401 if (op.matrix) {
402 op.matrix->mapRect(&dst);
403 }
404 return this->adjustAndMap(dst, op.paint);
405 }
mtklein62b67ae2014-08-18 11:10:37 -0700406
mtklein533eb782014-08-27 10:39:42 -0700407 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700408 const int N = op.paint.countText(op.text, op.byteLength);
409 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700410 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700411 }
412
413 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700414 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700415 AdjustTextForFontMetrics(&dst, op.paint);
416 return this->adjustAndMap(dst, &op.paint);
417 }
mtklein533eb782014-08-27 10:39:42 -0700418 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700419 const int N = op.paint.countText(op.text, op.byteLength);
420 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700421 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700422 }
423
424 SkScalar left = op.xpos[0], right = op.xpos[0];
425 for (int i = 1; i < N; i++) {
426 left = SkMinScalar(left, op.xpos[i]);
427 right = SkMaxScalar(right, op.xpos[i]);
428 }
429 SkRect dst = { left, op.y, right, op.y };
430 AdjustTextForFontMetrics(&dst, op.paint);
431 return this->adjustAndMap(dst, &op.paint);
432 }
mtklein533eb782014-08-27 10:39:42 -0700433 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700434 SkRect dst = op.path.getBounds();
435
436 // Pad all sides by the maximum padding in any direction we'd normally apply.
437 SkRect pad = { 0, 0, 0, 0};
438 AdjustTextForFontMetrics(&pad, op.paint);
439
440 // That maximum padding happens to always be the right pad today.
441 SkASSERT(pad.fLeft == -pad.fRight);
442 SkASSERT(pad.fTop == -pad.fBottom);
443 SkASSERT(pad.fRight > pad.fBottom);
444 dst.outset(pad.fRight, pad.fRight);
445
446 return this->adjustAndMap(dst, &op.paint);
447 }
448
mtklein533eb782014-08-27 10:39:42 -0700449 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700450 SkRect dst = op.blob->bounds();
451 dst.offset(op.x, op.y);
452 // TODO: remove when implicit bounds are plumbed through
453 if (dst.isEmpty()) {
454 return fCurrentClipBounds;
455 }
456 return this->adjustAndMap(dst, &op.paint);
457 }
mtklein62b67ae2014-08-18 11:10:37 -0700458
459 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
caryclark9a657fa2014-08-20 05:24:29 -0700460#ifdef SK_DEBUG
mtkleina19afb42014-08-19 17:47:14 -0700461 SkRect correct = *rect;
462#endif
mtkleinc8460492014-08-21 16:39:12 -0700463 const SkScalar yPad = 2.0f * paint.getTextSize(), // In practice, this seems to be enough.
mtkleina19afb42014-08-19 17:47:14 -0700464 xPad = 4.0f * yPad; // Hack for very wide Github logo font.
465 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700466#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700467 SkPaint::FontMetrics metrics;
468 paint.getFontMetrics(&metrics);
mtkleina19afb42014-08-19 17:47:14 -0700469 correct.fLeft += metrics.fXMin;
470 correct.fTop += metrics.fTop;
471 correct.fRight += metrics.fXMax;
472 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700473 // See skia:2862 for why we ignore small text sizes.
474 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
475 "%f %f %f %f vs. %f %f %f %f\n",
mtkleina19afb42014-08-19 17:47:14 -0700476 -xPad, -yPad, +xPad, +yPad,
477 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
478#endif
mtklein62b67ae2014-08-18 11:10:37 -0700479 }
480
mtklein479601b2014-08-18 08:45:33 -0700481 // Returns true if rect was meaningfully adjusted for the effects of paint,
482 // false if the paint could affect the rect in unknown ways.
483 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700484 if (paint) {
485 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700486 *rect = paint->computeFastBounds(*rect, rect);
487 return true;
mtkleina723b572014-08-15 11:49:49 -0700488 }
mtklein479601b2014-08-18 08:45:33 -0700489 return false;
490 }
491 return true;
492 }
493
mtklein8e393bf2014-10-01 12:48:58 -0700494 bool adjustForSaveLayerPaints(SkRect* rect, int savesToIgnore = 0) const {
495 for (int i = fSaveStack.count() - 1 - savesToIgnore; i >= 0; i--) {
Mike Klein271a0302014-09-23 15:28:38 -0400496 if (!AdjustForPaint(fSaveStack[i].paint, rect)) {
497 return false;
498 }
499 }
500 return true;
501 }
502
mtklein533eb782014-08-27 10:39:42 -0700503 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
504 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
mtklein479601b2014-08-18 08:45:33 -0700505 // Inverted rectangles really confuse our BBHs.
506 rect.sort();
507
508 // Adjust the rect for its own paint.
509 if (!AdjustForPaint(paint, &rect)) {
510 // The paint could do anything to our bounds. The only safe answer is the current clip.
511 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700512 }
513
514 // Adjust rect for all the paints from the SaveLayers we're inside.
Mike Klein271a0302014-09-23 15:28:38 -0400515 if (!this->adjustForSaveLayerPaints(&rect)) {
516 // Same deal as above.
517 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700518 }
519
mtklein533eb782014-08-27 10:39:42 -0700520 // Map the rect back to identity space.
mtklein6332f1d2014-08-19 07:09:40 -0700521 fCTM->mapRect(&rect);
mtklein479601b2014-08-18 08:45:33 -0700522
523 // Nothing can draw outside the current clip.
524 // (Only bounded ops call into this method, so oddballs like Clear don't matter here.)
mtklein533eb782014-08-27 10:39:42 -0700525 rect.intersect(fCurrentClipBounds);
526 return rect;
mtkleina723b572014-08-15 11:49:49 -0700527 }
528
mtklein533eb782014-08-27 10:39:42 -0700529 // Conservative identity-space bounds for each op in the SkRecord.
530 SkAutoTMalloc<Bounds> fBounds;
mtkleina723b572014-08-15 11:49:49 -0700531
532 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
533 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700534 // identity-space bounds of the current clip (fCurrentClipBounds).
mtklein828ce1f2014-08-13 12:58:45 -0700535 unsigned fCurrentOp;
mtklein6332f1d2014-08-19 07:09:40 -0700536 const SkMatrix* fCTM;
mtklein533eb782014-08-27 10:39:42 -0700537 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700538
539 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700540 SkTDArray<SaveBounds> fSaveStack;
541 SkTDArray<unsigned> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700542};
543
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000544} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700545
546void SkRecordFillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) {
mtklein828ce1f2014-08-13 12:58:45 -0700547 SkRecords::FillBounds(record, bbh);
mtklein5ad6ee12014-08-11 08:08:43 -0700548}