blob: e1975e1fe3649e2fb372c8804251017ddd20f7c6 [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
mtklein5ad6ee12014-08-11 08:08:43 -070026 SkTDArray<void*> 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 }
34 record.visit<void>((uintptr_t)ops[i], draw); // See FillBounds below.
35 }
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,
51 unsigned start, unsigned stop) {
52 SkAutoCanvasRestore saveRestore(canvas, true /*save now, restore at exit*/);
53
54 stop = SkTMin(stop, record.count());
55 SkRecords::PartialDraw draw(canvas, clearRect);
56 for (unsigned i = start; i < stop; i++) {
57 record.visit<void>(i, draw);
58 }
59}
60
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000061namespace SkRecords {
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000062
mtklein7cdc1ee2014-07-07 10:41:04 -070063// FIXME: SkBitmaps are stateful, so we need to copy them to play back in multiple threads.
64static SkBitmap shallow_copy(const SkBitmap& bitmap) {
65 return bitmap;
66}
67
commit-bot@chromium.org2e0c32a2014-04-28 16:19:45 +000068// NoOps draw nothing.
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000069template <> void Draw::draw(const NoOp&) {}
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000070
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +000071#define DRAW(T, call) template <> void Draw::draw(const T& r) { fCanvas->call; }
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000072DRAW(Restore, restore());
Florin Malita5f6102d2014-06-30 10:13:28 -040073DRAW(Save, save());
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000074DRAW(SaveLayer, saveLayer(r.bounds, r.paint, r.flags));
75DRAW(PopCull, popCull());
commit-bot@chromium.org88c3e272014-04-22 16:57:20 +000076DRAW(PushCull, pushCull(r.rect));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000077DRAW(Clear, clear(r.color));
commit-bot@chromium.org99bd7d82014-05-19 15:51:12 +000078DRAW(SetMatrix, setMatrix(SkMatrix::Concat(fInitialCTM, r.matrix)));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000079
80DRAW(ClipPath, clipPath(r.path, r.op, r.doAA));
81DRAW(ClipRRect, clipRRect(r.rrect, r.op, r.doAA));
82DRAW(ClipRect, clipRect(r.rect, r.op, r.doAA));
83DRAW(ClipRegion, clipRegion(r.region, r.op));
84
mtklein5f0e8222014-08-22 11:44:26 -070085DRAW(BeginCommentGroup, beginCommentGroup(r.description));
86DRAW(AddComment, addComment(r.key, r.value));
87DRAW(EndCommentGroup, endCommentGroup());
88
mtklein7cdc1ee2014-07-07 10:41:04 -070089DRAW(DrawBitmap, drawBitmap(shallow_copy(r.bitmap), r.left, r.top, r.paint));
90DRAW(DrawBitmapMatrix, drawBitmapMatrix(shallow_copy(r.bitmap), r.matrix, r.paint));
91DRAW(DrawBitmapNine, drawBitmapNine(shallow_copy(r.bitmap), r.center, r.dst, r.paint));
92DRAW(DrawBitmapRectToRect,
93 drawBitmapRectToRect(shallow_copy(r.bitmap), r.src, r.dst, r.paint, r.flags));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +000094DRAW(DrawDRRect, drawDRRect(r.outer, r.inner, r.paint));
95DRAW(DrawOval, drawOval(r.oval, r.paint));
96DRAW(DrawPaint, drawPaint(r.paint));
97DRAW(DrawPath, drawPath(r.path, r.paint));
dandovb3c9d1c2014-08-12 08:34:29 -070098DRAW(DrawPatch, drawPatch(r.cubics, r.colors, r.texCoords, r.xmode.get(), r.paint));
reedd5fa1a42014-08-09 11:08:05 -070099DRAW(DrawPicture, drawPicture(r.picture, r.matrix, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000100DRAW(DrawPoints, drawPoints(r.mode, r.count, r.pts, r.paint));
101DRAW(DrawPosText, drawPosText(r.text, r.byteLength, r.pos, r.paint));
102DRAW(DrawPosTextH, drawPosTextH(r.text, r.byteLength, r.xpos, r.y, r.paint));
103DRAW(DrawRRect, drawRRect(r.rrect, r.paint));
104DRAW(DrawRect, drawRect(r.rect, r.paint));
mtklein7cdc1ee2014-07-07 10:41:04 -0700105DRAW(DrawSprite, drawSprite(shallow_copy(r.bitmap), r.left, r.top, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000106DRAW(DrawText, drawText(r.text, r.byteLength, r.x, r.y, r.paint));
fmalita00d5c2c2014-08-21 08:53:26 -0700107DRAW(DrawTextBlob, drawTextBlob(r.blob, r.x, r.y, r.paint));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000108DRAW(DrawTextOnPath, drawTextOnPath(r.text, r.byteLength, r.path, r.matrix, r.paint));
109DRAW(DrawVertices, drawVertices(r.vmode, r.vertexCount, r.vertices, r.texs, r.colors,
110 r.xmode.get(), r.indices, r.indexCount, r.paint));
mtklein29dfaa82014-09-04 14:12:44 -0700111DRAW(DrawData, drawData(r.data, r.length));
commit-bot@chromium.org73b55eb2014-04-14 20:35:12 +0000112#undef DRAW
113
mtklein5ad6ee12014-08-11 08:08:43 -0700114
115// This is an SkRecord visitor that fills an SkBBoxHierarchy.
mtklein828ce1f2014-08-13 12:58:45 -0700116//
117// The interesting part here is how to calculate bounds for ops which don't
118// have intrinsic bounds. What is the bounds of a Save or a Translate?
119//
120// We answer this by thinking about a particular definition of bounds: if I
121// don't execute this op, pixels in this rectangle might draw incorrectly. So
122// the bounds of a Save, a Translate, a Restore, etc. are the union of the
123// bounds of Draw* ops that they might have an effect on. For any given
124// Save/Restore block, the bounds of the Save, the Restore, and any other
125// non-drawing ("control") ops inside are exactly the union of the bounds of
126// the drawing ops inside that block.
127//
128// To implement this, we keep a stack of active Save blocks. As we consume ops
129// inside the Save/Restore block, drawing ops are unioned with the bounds of
130// the block, and control ops are stashed away for later. When we finish the
131// block with a Restore, our bounds are complete, and we go back and fill them
132// in for all the control ops we stashed away.
mtklein5ad6ee12014-08-11 08:08:43 -0700133class FillBounds : SkNoncopyable {
134public:
mtklein828ce1f2014-08-13 12:58:45 -0700135 FillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) : fBounds(record.count()) {
136 // Calculate bounds for all ops. This won't go quite in order, so we'll need
137 // to store the bounds separately then feed them in to the BBH later in order.
mtklein533eb782014-08-27 10:39:42 -0700138 const Bounds largest = Bounds::MakeLargest();
mtklein6332f1d2014-08-19 07:09:40 -0700139 fCTM = &SkMatrix::I();
mtkleina723b572014-08-15 11:49:49 -0700140 fCurrentClipBounds = largest;
mtklein828ce1f2014-08-13 12:58:45 -0700141 for (fCurrentOp = 0; fCurrentOp < record.count(); fCurrentOp++) {
142 record.visit<void>(fCurrentOp, *this);
143 }
mtklein5ad6ee12014-08-11 08:08:43 -0700144
mtklein828ce1f2014-08-13 12:58:45 -0700145 // If we have any lingering unpaired Saves, simulate restores to make
146 // sure all ops in those Save blocks have their bounds calculated.
147 while (!fSaveStack.isEmpty()) {
148 this->popSaveBlock();
149 }
150
151 // Any control ops not part of any Save/Restore block draw everywhere.
152 while (!fControlIndices.isEmpty()) {
mtkleina723b572014-08-15 11:49:49 -0700153 this->popControl(largest);
mtklein828ce1f2014-08-13 12:58:45 -0700154 }
155
156 // Finally feed all stored bounds into the BBH. They'll be returned in this order.
bsalomon49f085d2014-09-05 13:34:00 -0700157 SkASSERT(bbh);
mtklein828ce1f2014-08-13 12:58:45 -0700158 for (uintptr_t i = 0; i < record.count(); i++) {
159 if (!fBounds[i].isEmpty()) {
160 bbh->insert((void*)i, fBounds[i], true/*ok to defer*/);
161 }
162 }
163 bbh->flushDeferredInserts();
164 }
mtklein5ad6ee12014-08-11 08:08:43 -0700165
mtkleina723b572014-08-15 11:49:49 -0700166 template <typename T> void operator()(const T& op) {
167 this->updateCTM(op);
168 this->updateClipBounds(op);
169 this->trackBounds(op);
mtklein5ad6ee12014-08-11 08:08:43 -0700170 }
171
172private:
mtklein533eb782014-08-27 10:39:42 -0700173 // In this file, SkRect are in local coordinates, Bounds are translated back to identity space.
174 typedef SkRect Bounds;
175
mtklein828ce1f2014-08-13 12:58:45 -0700176 struct SaveBounds {
mtkleina723b572014-08-15 11:49:49 -0700177 int controlOps; // Number of control ops in this Save block, including the Save.
mtklein533eb782014-08-27 10:39:42 -0700178 Bounds bounds; // Bounds of everything in the block.
mtkleina723b572014-08-15 11:49:49 -0700179 const SkPaint* paint; // Unowned. If set, adjusts the bounds of all ops in this block.
mtklein828ce1f2014-08-13 12:58:45 -0700180 };
181
mtklein6cfa73a2014-08-13 13:33:49 -0700182 template <typename T> void updateCTM(const T&) { /* most ops don't change the CTM */ }
mtklein6332f1d2014-08-19 07:09:40 -0700183 void updateCTM(const Restore& op) { fCTM = &op.matrix; }
184 void updateCTM(const SetMatrix& op) { fCTM = &op.matrix; }
mtkleina723b572014-08-15 11:49:49 -0700185
186 template <typename T> void updateClipBounds(const T&) { /* most ops don't change the clip */ }
187 // Each of these devBounds fields is the state of the device bounds after the op.
188 // So Restore's devBounds are those bounds saved by its paired Save or SaveLayer.
mtklein533eb782014-08-27 10:39:42 -0700189 void updateClipBounds(const Restore& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
190 void updateClipBounds(const ClipPath& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
191 void updateClipBounds(const ClipRRect& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
192 void updateClipBounds(const ClipRect& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
193 void updateClipBounds(const ClipRegion& op) { fCurrentClipBounds = Bounds::Make(op.devBounds); }
mtkleina723b572014-08-15 11:49:49 -0700194 void updateClipBounds(const SaveLayer& op) {
195 if (op.bounds) {
196 fCurrentClipBounds.intersect(this->adjustAndMap(*op.bounds, op.paint));
197 }
198 }
mtklein6cfa73a2014-08-13 13:33:49 -0700199
mtklein828ce1f2014-08-13 12:58:45 -0700200 // The bounds of these ops must be calculated when we hit the Restore
201 // from the bounds of the ops in the same Save block.
mtkleina723b572014-08-15 11:49:49 -0700202 void trackBounds(const Save&) { this->pushSaveBlock(NULL); }
mtkleina723b572014-08-15 11:49:49 -0700203 void trackBounds(const SaveLayer& op) { this->pushSaveBlock(op.paint); }
204 void trackBounds(const Restore&) { fBounds[fCurrentOp] = this->popSaveBlock(); }
mtklein828ce1f2014-08-13 12:58:45 -0700205
mtklein68199a22014-08-25 13:49:29 -0700206 void trackBounds(const SetMatrix&) { this->pushControl(); }
207 void trackBounds(const ClipRect&) { this->pushControl(); }
208 void trackBounds(const ClipRRect&) { this->pushControl(); }
209 void trackBounds(const ClipPath&) { this->pushControl(); }
210 void trackBounds(const ClipRegion&) { this->pushControl(); }
211 void trackBounds(const PushCull&) { this->pushControl(); }
212 void trackBounds(const PopCull&) { this->pushControl(); }
213 void trackBounds(const BeginCommentGroup&) { this->pushControl(); }
214 void trackBounds(const AddComment&) { this->pushControl(); }
215 void trackBounds(const EndCommentGroup&) { this->pushControl(); }
mtklein29dfaa82014-09-04 14:12:44 -0700216 void trackBounds(const DrawData&) { this->pushControl(); }
mtklein828ce1f2014-08-13 12:58:45 -0700217
218 // For all other ops, we can calculate and store the bounds directly now.
219 template <typename T> void trackBounds(const T& op) {
220 fBounds[fCurrentOp] = this->bounds(op);
221 this->updateSaveBounds(fBounds[fCurrentOp]);
mtklein5ad6ee12014-08-11 08:08:43 -0700222 }
223
mtkleina723b572014-08-15 11:49:49 -0700224 void pushSaveBlock(const SkPaint* paint) {
mtklein828ce1f2014-08-13 12:58:45 -0700225 // Starting a new Save block. Push a new entry to represent that.
mtklein533eb782014-08-27 10:39:42 -0700226 SaveBounds sb = { 0, Bounds::MakeEmpty(), paint };
mtklein828ce1f2014-08-13 12:58:45 -0700227 fSaveStack.push(sb);
228 this->pushControl();
229 }
230
mtkleind910f542014-08-22 09:06:34 -0700231 static bool PaintMayAffectTransparentBlack(const SkPaint* paint) {
dneto327f9052014-09-15 10:53:16 -0700232 if (paint) {
233 // FIXME: this is very conservative
234 if (paint->getImageFilter() || paint->getColorFilter()) {
235 return true;
236 }
237
238 // Unusual Xfermodes require us to process a saved layer
239 // even with operations outisde the clip.
240 // For example, DstIn is used by masking layers.
241 // https://code.google.com/p/skia/issues/detail?id=1291
242 // https://crbug.com/401593
243 SkXfermode* xfermode = paint->getXfermode();
244 SkXfermode::Mode mode;
245 // SrcOver is ok, and is also the common case with a NULL xfermode.
246 // So we should make that the fast path and bypass the mode extraction
247 // and test.
248 if (xfermode && xfermode->asMode(&mode)) {
249 switch (mode) {
250 // For each of the following transfer modes, if the source
251 // alpha is zero (our transparent black), the resulting
252 // blended alpha is not necessarily equal to the original
253 // destination alpha.
254 case SkXfermode::kClear_Mode:
255 case SkXfermode::kSrc_Mode:
256 case SkXfermode::kSrcIn_Mode:
257 case SkXfermode::kDstIn_Mode:
258 case SkXfermode::kSrcOut_Mode:
259 case SkXfermode::kDstATop_Mode:
260 case SkXfermode::kModulate_Mode:
261 return true;
262 break;
263 default:
264 break;
265 }
266 }
267 }
268 return false;
mtkleind910f542014-08-22 09:06:34 -0700269 }
270
mtklein533eb782014-08-27 10:39:42 -0700271 Bounds popSaveBlock() {
mtklein828ce1f2014-08-13 12:58:45 -0700272 // We're done the Save block. Apply the block's bounds to all control ops inside it.
273 SaveBounds sb;
274 fSaveStack.pop(&sb);
mtkleind910f542014-08-22 09:06:34 -0700275
276 // If the paint affects transparent black, we can't trust any of our calculated bounds.
mtklein533eb782014-08-27 10:39:42 -0700277 const Bounds& bounds =
mtkleind910f542014-08-22 09:06:34 -0700278 PaintMayAffectTransparentBlack(sb.paint) ? fCurrentClipBounds : sb.bounds;
279
mtklein828ce1f2014-08-13 12:58:45 -0700280 while (sb.controlOps --> 0) {
mtkleind910f542014-08-22 09:06:34 -0700281 this->popControl(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700282 }
283
284 // This whole Save block may be part another Save block.
mtkleind910f542014-08-22 09:06:34 -0700285 this->updateSaveBounds(bounds);
mtklein828ce1f2014-08-13 12:58:45 -0700286
287 // If called from a real Restore (not a phony one for balance), it'll need the bounds.
mtkleind910f542014-08-22 09:06:34 -0700288 return bounds;
mtklein828ce1f2014-08-13 12:58:45 -0700289 }
290
291 void pushControl() {
292 fControlIndices.push(fCurrentOp);
293 if (!fSaveStack.isEmpty()) {
294 fSaveStack.top().controlOps++;
295 }
296 }
297
mtklein533eb782014-08-27 10:39:42 -0700298 void popControl(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700299 fBounds[fControlIndices.top()] = bounds;
300 fControlIndices.pop();
301 }
302
mtklein533eb782014-08-27 10:39:42 -0700303 void updateSaveBounds(const Bounds& bounds) {
mtklein828ce1f2014-08-13 12:58:45 -0700304 // If we're in a Save block, expand its bounds to cover these bounds too.
305 if (!fSaveStack.isEmpty()) {
306 fSaveStack.top().bounds.join(bounds);
307 }
308 }
309
mtklein131a22b2014-08-25 14:16:15 -0700310 // FIXME: this method could use better bounds
mtklein533eb782014-08-27 10:39:42 -0700311 Bounds bounds(const DrawText&) const { return fCurrentClipBounds; }
mtklein68199a22014-08-25 13:49:29 -0700312
mtklein533eb782014-08-27 10:39:42 -0700313 Bounds bounds(const Clear&) const { return Bounds::MakeLargest(); } // Ignores the clip.
314 Bounds bounds(const DrawPaint&) const { return fCurrentClipBounds; }
315 Bounds bounds(const NoOp&) const { return Bounds::MakeEmpty(); } // NoOps don't draw.
mtklein828ce1f2014-08-13 12:58:45 -0700316
mtklein533eb782014-08-27 10:39:42 -0700317 Bounds bounds(const DrawSprite& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700318 const SkBitmap& bm = op.bitmap;
mtklein533eb782014-08-27 10:39:42 -0700319 return Bounds::MakeXYWH(op.left, op.top, bm.width(), bm.height()); // Ignores the matrix.
mtklein131a22b2014-08-25 14:16:15 -0700320 }
321
mtklein533eb782014-08-27 10:39:42 -0700322 Bounds bounds(const DrawRect& op) const { return this->adjustAndMap(op.rect, &op.paint); }
323 Bounds bounds(const DrawOval& op) const { return this->adjustAndMap(op.oval, &op.paint); }
324 Bounds bounds(const DrawRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700325 return this->adjustAndMap(op.rrect.rect(), &op.paint);
326 }
mtklein533eb782014-08-27 10:39:42 -0700327 Bounds bounds(const DrawDRRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700328 return this->adjustAndMap(op.outer.rect(), &op.paint);
329 }
330
mtklein533eb782014-08-27 10:39:42 -0700331 Bounds bounds(const DrawBitmapRectToRect& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700332 return this->adjustAndMap(op.dst, op.paint);
333 }
mtklein533eb782014-08-27 10:39:42 -0700334 Bounds bounds(const DrawBitmapNine& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700335 return this->adjustAndMap(op.dst, op.paint);
336 }
mtklein533eb782014-08-27 10:39:42 -0700337 Bounds bounds(const DrawBitmap& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700338 const SkBitmap& bm = op.bitmap;
339 return this->adjustAndMap(SkRect::MakeXYWH(op.left, op.top, bm.width(), bm.height()),
340 op.paint);
341 }
mtklein533eb782014-08-27 10:39:42 -0700342 Bounds bounds(const DrawBitmapMatrix& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700343 const SkBitmap& bm = op.bitmap;
344 SkRect dst = SkRect::MakeWH(bm.width(), bm.height());
345 op.matrix.mapRect(&dst);
346 return this->adjustAndMap(dst, op.paint);
347 }
348
mtklein533eb782014-08-27 10:39:42 -0700349 Bounds bounds(const DrawPath& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700350 return op.path.isInverseFillType() ? fCurrentClipBounds
351 : this->adjustAndMap(op.path.getBounds(), &op.paint);
352 }
mtklein533eb782014-08-27 10:39:42 -0700353 Bounds bounds(const DrawPoints& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700354 SkRect dst;
355 dst.set(op.pts, op.count);
356
357 // Pad the bounding box a little to make sure hairline points' bounds aren't empty.
358 SkScalar stroke = SkMaxScalar(op.paint.getStrokeWidth(), 0.01f);
359 dst.outset(stroke/2, stroke/2);
360
361 return this->adjustAndMap(dst, &op.paint);
362 }
mtklein533eb782014-08-27 10:39:42 -0700363 Bounds bounds(const DrawPatch& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700364 SkRect dst;
365 dst.set(op.cubics, SkPatchUtils::kNumCtrlPts);
366 return this->adjustAndMap(dst, &op.paint);
367 }
mtklein533eb782014-08-27 10:39:42 -0700368 Bounds bounds(const DrawVertices& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700369 SkRect dst;
370 dst.set(op.vertices, op.vertexCount);
371 return this->adjustAndMap(dst, &op.paint);
372 }
373
mtklein533eb782014-08-27 10:39:42 -0700374 Bounds bounds(const DrawPicture& op) const {
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700375 SkRect dst = op.picture->cullRect();
mtklein131a22b2014-08-25 14:16:15 -0700376 if (op.matrix) {
377 op.matrix->mapRect(&dst);
378 }
379 return this->adjustAndMap(dst, op.paint);
380 }
mtklein62b67ae2014-08-18 11:10:37 -0700381
mtklein533eb782014-08-27 10:39:42 -0700382 Bounds bounds(const DrawPosText& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700383 const int N = op.paint.countText(op.text, op.byteLength);
384 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700385 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700386 }
387
388 SkRect dst;
mtklein937c9c72014-09-02 15:19:48 -0700389 dst.set(op.pos, N);
mtklein62b67ae2014-08-18 11:10:37 -0700390 AdjustTextForFontMetrics(&dst, op.paint);
391 return this->adjustAndMap(dst, &op.paint);
392 }
mtklein533eb782014-08-27 10:39:42 -0700393 Bounds bounds(const DrawPosTextH& op) const {
mtklein62b67ae2014-08-18 11:10:37 -0700394 const int N = op.paint.countText(op.text, op.byteLength);
395 if (N == 0) {
mtklein533eb782014-08-27 10:39:42 -0700396 return Bounds::MakeEmpty();
mtklein62b67ae2014-08-18 11:10:37 -0700397 }
398
399 SkScalar left = op.xpos[0], right = op.xpos[0];
400 for (int i = 1; i < N; i++) {
401 left = SkMinScalar(left, op.xpos[i]);
402 right = SkMaxScalar(right, op.xpos[i]);
403 }
404 SkRect dst = { left, op.y, right, op.y };
405 AdjustTextForFontMetrics(&dst, op.paint);
406 return this->adjustAndMap(dst, &op.paint);
407 }
mtklein533eb782014-08-27 10:39:42 -0700408 Bounds bounds(const DrawTextOnPath& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700409 SkRect dst = op.path.getBounds();
410
411 // Pad all sides by the maximum padding in any direction we'd normally apply.
412 SkRect pad = { 0, 0, 0, 0};
413 AdjustTextForFontMetrics(&pad, op.paint);
414
415 // That maximum padding happens to always be the right pad today.
416 SkASSERT(pad.fLeft == -pad.fRight);
417 SkASSERT(pad.fTop == -pad.fBottom);
418 SkASSERT(pad.fRight > pad.fBottom);
419 dst.outset(pad.fRight, pad.fRight);
420
421 return this->adjustAndMap(dst, &op.paint);
422 }
423
mtklein533eb782014-08-27 10:39:42 -0700424 Bounds bounds(const DrawTextBlob& op) const {
mtklein131a22b2014-08-25 14:16:15 -0700425 SkRect dst = op.blob->bounds();
426 dst.offset(op.x, op.y);
427 // TODO: remove when implicit bounds are plumbed through
428 if (dst.isEmpty()) {
429 return fCurrentClipBounds;
430 }
431 return this->adjustAndMap(dst, &op.paint);
432 }
mtklein62b67ae2014-08-18 11:10:37 -0700433
434 static void AdjustTextForFontMetrics(SkRect* rect, const SkPaint& paint) {
caryclark9a657fa2014-08-20 05:24:29 -0700435#ifdef SK_DEBUG
mtkleina19afb42014-08-19 17:47:14 -0700436 SkRect correct = *rect;
437#endif
mtkleinc8460492014-08-21 16:39:12 -0700438 const SkScalar yPad = 2.0f * paint.getTextSize(), // In practice, this seems to be enough.
mtkleina19afb42014-08-19 17:47:14 -0700439 xPad = 4.0f * yPad; // Hack for very wide Github logo font.
440 rect->outset(xPad, yPad);
caryclark9a657fa2014-08-20 05:24:29 -0700441#ifdef SK_DEBUG
mtklein62b67ae2014-08-18 11:10:37 -0700442 SkPaint::FontMetrics metrics;
443 paint.getFontMetrics(&metrics);
mtkleina19afb42014-08-19 17:47:14 -0700444 correct.fLeft += metrics.fXMin;
445 correct.fTop += metrics.fTop;
446 correct.fRight += metrics.fXMax;
447 correct.fBottom += metrics.fBottom;
mtkleind13291a2014-08-21 14:46:49 -0700448 // See skia:2862 for why we ignore small text sizes.
449 SkASSERTF(paint.getTextSize() < 0.001f || rect->contains(correct),
450 "%f %f %f %f vs. %f %f %f %f\n",
mtkleina19afb42014-08-19 17:47:14 -0700451 -xPad, -yPad, +xPad, +yPad,
452 metrics.fXMin, metrics.fTop, metrics.fXMax, metrics.fBottom);
453#endif
mtklein62b67ae2014-08-18 11:10:37 -0700454 }
455
mtklein479601b2014-08-18 08:45:33 -0700456 // Returns true if rect was meaningfully adjusted for the effects of paint,
457 // false if the paint could affect the rect in unknown ways.
458 static bool AdjustForPaint(const SkPaint* paint, SkRect* rect) {
mtkleina723b572014-08-15 11:49:49 -0700459 if (paint) {
460 if (paint->canComputeFastBounds()) {
mtklein479601b2014-08-18 08:45:33 -0700461 *rect = paint->computeFastBounds(*rect, rect);
462 return true;
mtkleina723b572014-08-15 11:49:49 -0700463 }
mtklein479601b2014-08-18 08:45:33 -0700464 return false;
465 }
466 return true;
467 }
468
mtklein533eb782014-08-27 10:39:42 -0700469 // Adjust rect for all paints that may affect its geometry, then map it to identity space.
470 Bounds adjustAndMap(SkRect rect, const SkPaint* paint) const {
mtklein479601b2014-08-18 08:45:33 -0700471 // Inverted rectangles really confuse our BBHs.
472 rect.sort();
473
474 // Adjust the rect for its own paint.
475 if (!AdjustForPaint(paint, &rect)) {
476 // The paint could do anything to our bounds. The only safe answer is the current clip.
477 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700478 }
479
480 // Adjust rect for all the paints from the SaveLayers we're inside.
mtkleina723b572014-08-15 11:49:49 -0700481 for (int i = fSaveStack.count() - 1; i >= 0; i--) {
mtklein479601b2014-08-18 08:45:33 -0700482 if (!AdjustForPaint(fSaveStack[i].paint, &rect)) {
483 // Same deal as above.
484 return fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700485 }
486 }
487
mtklein533eb782014-08-27 10:39:42 -0700488 // Map the rect back to identity space.
mtklein6332f1d2014-08-19 07:09:40 -0700489 fCTM->mapRect(&rect);
mtklein479601b2014-08-18 08:45:33 -0700490
491 // Nothing can draw outside the current clip.
492 // (Only bounded ops call into this method, so oddballs like Clear don't matter here.)
mtklein533eb782014-08-27 10:39:42 -0700493 rect.intersect(fCurrentClipBounds);
494 return rect;
mtkleina723b572014-08-15 11:49:49 -0700495 }
496
mtklein533eb782014-08-27 10:39:42 -0700497 // Conservative identity-space bounds for each op in the SkRecord.
498 SkAutoTMalloc<Bounds> fBounds;
mtkleina723b572014-08-15 11:49:49 -0700499
500 // We walk fCurrentOp through the SkRecord, as we go using updateCTM()
501 // and updateClipBounds() to maintain the exact CTM (fCTM) and conservative
mtklein533eb782014-08-27 10:39:42 -0700502 // identity-space bounds of the current clip (fCurrentClipBounds).
mtklein828ce1f2014-08-13 12:58:45 -0700503 unsigned fCurrentOp;
mtklein6332f1d2014-08-19 07:09:40 -0700504 const SkMatrix* fCTM;
mtklein533eb782014-08-27 10:39:42 -0700505 Bounds fCurrentClipBounds;
mtkleina723b572014-08-15 11:49:49 -0700506
507 // Used to track the bounds of Save/Restore blocks and the control ops inside them.
mtklein828ce1f2014-08-13 12:58:45 -0700508 SkTDArray<SaveBounds> fSaveStack;
509 SkTDArray<unsigned> fControlIndices;
mtklein5ad6ee12014-08-11 08:08:43 -0700510};
511
commit-bot@chromium.org27f6b0d2014-05-09 14:59:29 +0000512} // namespace SkRecords
mtklein5ad6ee12014-08-11 08:08:43 -0700513
514void SkRecordFillBounds(const SkRecord& record, SkBBoxHierarchy* bbh) {
mtklein828ce1f2014-08-13 12:58:45 -0700515 SkRecords::FillBounds(record, bbh);
mtklein5ad6ee12014-08-11 08:08:43 -0700516}