blob: ea32805b49eed76c4c63d77c2f7385e712d114ad [file] [log] [blame]
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001/*
2 * Copyright 2012 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 */
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00007
mtklein3e8232b2014-08-18 13:39:11 -07008#include "SkBBoxHierarchy.h"
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00009#include "SkBlurImageFilter.h"
reed@google.com21b519d2012-10-02 17:42:15 +000010#include "SkCanvas.h"
robertphillipsd8aa7b72014-10-30 16:45:02 -070011#include "SkColorMatrixFilter.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000012#include "SkColorPriv.h"
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +000013#include "SkDashPathEffect.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000014#include "SkData.h"
reed@google.combf790232013-12-13 19:45:58 +000015#include "SkDecodingImageGenerator.h"
scroggo@google.com49ce11b2013-04-25 18:29:32 +000016#include "SkError.h"
halcanary@google.com3d50ea12014-01-02 13:15:13 +000017#include "SkImageEncoder.h"
18#include "SkImageGenerator.h"
reed@google.com21b519d2012-10-02 17:42:15 +000019#include "SkPaint.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000020#include "SkPicture.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000021#include "SkPictureRecorder.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000022#include "SkPictureUtils.h"
mtkleind72094d2014-08-27 12:12:23 -070023#include "SkPixelRef.h"
reed@google.com72aa79c2013-01-24 18:27:42 +000024#include "SkRRect.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000025#include "SkRandom.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000026#include "SkShader.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000027#include "SkStream.h"
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +000028
29#if SK_SUPPORT_GPU
30#include "SkSurface.h"
31#include "GrContextFactory.h"
32#include "GrPictureUtils.h"
33#endif
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000034#include "Test.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000035
reed@google.com47b679b2014-05-14 18:58:16 +000036#include "SkLumaColorFilter.h"
37#include "SkColorFilterImageFilter.h"
38
robertphillips@google.comed9866c2014-01-09 19:20:45 +000039static const int gColorScale = 30;
40static const int gColorOffset = 60;
reed@google.comfe7b1ed2012-11-29 21:00:39 +000041
42static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000043 bm->allocN32Pixels(w, h);
reed@google.comfe7b1ed2012-11-29 21:00:39 +000044 bm->eraseColor(color);
45 if (immutable) {
46 bm->setImmutable();
47 }
48}
49
robertphillips@google.comfe5824a2014-01-09 19:45:29 +000050static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000051 SkASSERT(w % 2 == 0);
52 SkASSERT(h % 2 == 0);
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000053 bm->allocPixels(SkImageInfo::Make(w, h, kAlpha_8_SkColorType,
54 kPremul_SkAlphaType));
robertphillips@google.comed9866c2014-01-09 19:20:45 +000055 SkAutoLockPixels lock(*bm);
56 for (int y = 0; y < h; y += 2) {
57 uint8_t* s = bm->getAddr8(0, y);
58 for (int x = 0; x < w; x += 2) {
59 *s++ = 0xFF;
60 *s++ = 0x00;
61 }
62 s = bm->getAddr8(0, y + 1);
63 for (int x = 0; x < w; x += 2) {
64 *s++ = 0x00;
65 *s++ = 0xFF;
66 }
67 }
68 if (immutable) {
69 bm->setImmutable();
70 }
71}
reed@google.comfe7b1ed2012-11-29 21:00:39 +000072
robertphillips@google.comed9866c2014-01-09 19:20:45 +000073static void init_paint(SkPaint* paint, const SkBitmap &bm) {
74 SkShader* shader = SkShader::CreateBitmapShader(bm,
75 SkShader::kClamp_TileMode,
76 SkShader::kClamp_TileMode);
77 paint->setShader(shader)->unref();
78}
79
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +000080typedef void (*DrawBitmapProc)(SkCanvas*, const SkBitmap&,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000081 const SkBitmap&, const SkPoint&,
82 SkTDArray<SkPixelRef*>* usedPixRefs);
robertphillips@google.comed9866c2014-01-09 19:20:45 +000083
skia.committer@gmail.com856673a2014-01-10 07:08:11 +000084static void drawpaint_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000085 const SkBitmap& altBM, const SkPoint& pos,
86 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000087 SkPaint paint;
88 init_paint(&paint, bm);
89
90 canvas->drawPaint(paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000091 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +000092}
93
skia.committer@gmail.com856673a2014-01-10 07:08:11 +000094static void drawpoints_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000095 const SkBitmap& altBM, const SkPoint& pos,
96 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000097 SkPaint paint;
98 init_paint(&paint, bm);
99
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000100 // draw a rect
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000101 SkPoint points[5] = {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000102 { pos.fX, pos.fY },
103 { pos.fX + bm.width() - 1, pos.fY },
104 { pos.fX + bm.width() - 1, pos.fY + bm.height() - 1 },
105 { pos.fX, pos.fY + bm.height() - 1 },
106 { pos.fX, pos.fY },
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000107 };
108
109 canvas->drawPoints(SkCanvas::kPolygon_PointMode, 5, points, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000110 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000111}
112
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000113static void drawrect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000114 const SkBitmap& altBM, const SkPoint& pos,
115 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000116 SkPaint paint;
117 init_paint(&paint, bm);
118
119 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
120 r.offset(pos.fX, pos.fY);
121
122 canvas->drawRect(r, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000123 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000124}
125
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000126static void drawoval_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000127 const SkBitmap& altBM, const SkPoint& pos,
128 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000129 SkPaint paint;
130 init_paint(&paint, bm);
131
132 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
133 r.offset(pos.fX, pos.fY);
134
135 canvas->drawOval(r, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000136 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000137}
138
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000139static void drawrrect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000140 const SkBitmap& altBM, const SkPoint& pos,
141 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000142 SkPaint paint;
143 init_paint(&paint, bm);
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000144
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000145 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
146 r.offset(pos.fX, pos.fY);
147
148 SkRRect rr;
149 rr.setRectXY(r, SkIntToScalar(bm.width())/4, SkIntToScalar(bm.height())/4);
150 canvas->drawRRect(rr, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000151 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000152}
153
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000154static void drawpath_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000155 const SkBitmap& altBM, const SkPoint& pos,
156 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000157 SkPaint paint;
158 init_paint(&paint, bm);
159
160 SkPath path;
161 path.lineTo(bm.width()/2.0f, SkIntToScalar(bm.height()));
162 path.lineTo(SkIntToScalar(bm.width()), 0);
163 path.close();
164 path.offset(pos.fX, pos.fY);
165
166 canvas->drawPath(path, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000167 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000168}
169
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000170static void drawbitmap_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000171 const SkBitmap& altBM, const SkPoint& pos,
172 SkTDArray<SkPixelRef*>* usedPixRefs) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000173 canvas->drawBitmap(bm, pos.fX, pos.fY, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000174 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000175}
176
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000177static void drawbitmap_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000178 const SkBitmap& altBM, const SkPoint& pos,
179 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000180 SkPaint paint;
181 init_paint(&paint, bm);
182
183 // The bitmap in the paint is ignored unless we're drawing an A8 bitmap
184 canvas->drawBitmap(altBM, pos.fX, pos.fY, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000185 *usedPixRefs->append() = bm.pixelRef();
186 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000187}
188
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000189static void drawsprite_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000190 const SkBitmap& altBM, const SkPoint& pos,
191 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000192 const SkMatrix& ctm = canvas->getTotalMatrix();
193
194 SkPoint p(pos);
195 ctm.mapPoints(&p, 1);
196
197 canvas->drawSprite(bm, (int)p.fX, (int)p.fY, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000198 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000199}
200
201#if 0
202// Although specifiable, this case doesn't seem to make sense (i.e., the
203// bitmap in the shader is never used).
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000204static void drawsprite_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000205 const SkBitmap& altBM, const SkPoint& pos,
206 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000207 SkPaint paint;
208 init_paint(&paint, bm);
209
210 const SkMatrix& ctm = canvas->getTotalMatrix();
211
212 SkPoint p(pos);
213 ctm.mapPoints(&p, 1);
214
215 canvas->drawSprite(altBM, (int)p.fX, (int)p.fY, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000216 *usedPixRefs->append() = bm.pixelRef();
217 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000218}
219#endif
220
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000221static void drawbitmaprect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000222 const SkBitmap& altBM, const SkPoint& pos,
223 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000224 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
225
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000226 r.offset(pos.fX, pos.fY);
227 canvas->drawBitmapRectToRect(bm, NULL, r, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000228 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000229}
230
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000231static void drawbitmaprect_withshader_proc(SkCanvas* canvas,
232 const SkBitmap& bm,
233 const SkBitmap& altBM,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000234 const SkPoint& pos,
235 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000236 SkPaint paint;
237 init_paint(&paint, bm);
238
239 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000240 r.offset(pos.fX, pos.fY);
241
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000242 // The bitmap in the paint is ignored unless we're drawing an A8 bitmap
243 canvas->drawBitmapRectToRect(altBM, NULL, r, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000244 *usedPixRefs->append() = bm.pixelRef();
245 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000246}
247
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000248static void drawtext_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000249 const SkBitmap& altBM, const SkPoint& pos,
250 SkTDArray<SkPixelRef*>* usedPixRefs) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000251 SkPaint paint;
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000252 init_paint(&paint, bm);
253 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
254
255 canvas->drawText("0", 1, pos.fX, pos.fY+bm.width(), paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000256 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000257}
258
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000259static void drawpostext_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000260 const SkBitmap& altBM, const SkPoint& pos,
261 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000262 SkPaint paint;
263 init_paint(&paint, bm);
264 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
265
266 SkPoint point = { pos.fX, pos.fY + bm.height() };
267 canvas->drawPosText("O", 1, &point, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000268 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000269}
270
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000271static void drawtextonpath_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000272 const SkBitmap& altBM, const SkPoint& pos,
273 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000274 SkPaint paint;
275
276 init_paint(&paint, bm);
277 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
278
279 SkPath path;
280 path.lineTo(SkIntToScalar(bm.width()), 0);
281 path.offset(pos.fX, pos.fY+bm.height());
282
283 canvas->drawTextOnPath("O", 1, path, NULL, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000284 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000285}
286
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000287static void drawverts_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000288 const SkBitmap& altBM, const SkPoint& pos,
289 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000290 SkPaint paint;
291 init_paint(&paint, bm);
292
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000293 SkPoint verts[4] = {
294 { pos.fX, pos.fY },
295 { pos.fX + bm.width(), pos.fY },
296 { pos.fX + bm.width(), pos.fY + bm.height() },
297 { pos.fX, pos.fY + bm.height() }
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000298 };
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000299 SkPoint texs[4] = { { 0, 0 },
300 { SkIntToScalar(bm.width()), 0 },
301 { SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) },
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000302 { 0, SkIntToScalar(bm.height()) } };
303 uint16_t indices[6] = { 0, 1, 2, 0, 2, 3 };
304
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000305 canvas->drawVertices(SkCanvas::kTriangles_VertexMode, 4, verts, texs, NULL, NULL,
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000306 indices, 6, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000307 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000308}
309
310// Return a picture with the bitmaps drawn at the specified positions.
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000311static SkPicture* record_bitmaps(const SkBitmap bm[],
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000312 const SkPoint pos[],
313 SkTDArray<SkPixelRef*> analytic[],
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000314 int count,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000315 DrawBitmapProc proc) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000316 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -0700317 SkCanvas* canvas = recorder.beginRecording(1000, 1000);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000318 for (int i = 0; i < count; ++i) {
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000319 analytic[i].rewind();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000320 canvas->save();
321 SkRect clipRect = SkRect::MakeXYWH(pos[i].fX, pos[i].fY,
322 SkIntToScalar(bm[i].width()),
323 SkIntToScalar(bm[i].height()));
324 canvas->clipRect(clipRect, SkRegion::kIntersect_Op);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000325 proc(canvas, bm[i], bm[count+i], pos[i], &analytic[i]);
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000326 canvas->restore();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000327 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000328 return recorder.endRecording();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000329}
330
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000331static void rand_rect(SkRect* rect, SkRandom& rand, SkScalar W, SkScalar H) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000332 rect->fLeft = rand.nextRangeScalar(-W, 2*W);
333 rect->fTop = rand.nextRangeScalar(-H, 2*H);
334 rect->fRight = rect->fLeft + rand.nextRangeScalar(0, W);
335 rect->fBottom = rect->fTop + rand.nextRangeScalar(0, H);
336
337 // we integralize rect to make our tests more predictable, since Gather is
338 // a little sloppy.
339 SkIRect ir;
340 rect->round(&ir);
341 rect->set(ir);
342}
343
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000344static void draw(SkPicture* pic, int width, int height, SkBitmap* result) {
345 make_bm(result, width, height, SK_ColorBLACK, false);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000346
347 SkCanvas canvas(*result);
robertphillips9b14f262014-06-04 05:40:44 -0700348 canvas.drawPicture(pic);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000349}
350
351template <typename T> int find_index(const T* array, T elem, int count) {
352 for (int i = 0; i < count; ++i) {
353 if (array[i] == elem) {
354 return i;
355 }
356 }
357 return -1;
358}
359
360// Return true if 'ref' is found in array[]
361static bool find(SkPixelRef const * const * array, SkPixelRef const * ref, int count) {
362 return find_index<const SkPixelRef*>(array, ref, count) >= 0;
363}
364
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000365// Look at each pixel that is inside 'subset', and if its color appears in
366// colors[], find the corresponding value in refs[] and append that ref into
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000367// array, skipping duplicates of the same value.
368// Note that gathering pixelRefs from rendered colors suffers from the problem
369// that multiple simultaneous textures (e.g., A8 for alpha and 8888 for color)
370// isn't easy to reconstruct.
371static void gather_from_image(const SkBitmap& bm, SkPixelRef* const refs[],
372 int count, SkTDArray<SkPixelRef*>* array,
373 const SkRect& subset) {
374 SkIRect ir;
375 subset.roundOut(&ir);
376
377 if (!ir.intersect(0, 0, bm.width()-1, bm.height()-1)) {
378 return;
379 }
380
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000381 // Since we only want to return unique values in array, when we scan we just
382 // set a bit for each index'd color found. In practice we only have a few
383 // distinct colors, so we just use an int's bits as our array. Hence the
384 // assert that count <= number-of-bits-in-our-int.
385 SkASSERT((unsigned)count <= 32);
386 uint32_t bitarray = 0;
387
388 SkAutoLockPixels alp(bm);
389
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000390 for (int y = ir.fTop; y < ir.fBottom; ++y) {
391 for (int x = ir.fLeft; x < ir.fRight; ++x) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000392 SkPMColor pmc = *bm.getAddr32(x, y);
393 // the only good case where the color is not found would be if
394 // the color is transparent, meaning no bitmap was drawn in that
395 // pixel.
396 if (pmc) {
bsalomon@google.comc3d753e2013-01-08 17:24:44 +0000397 uint32_t index = SkGetPackedR32(pmc);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000398 SkASSERT(SkGetPackedG32(pmc) == index);
399 SkASSERT(SkGetPackedB32(pmc) == index);
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000400 if (0 == index) {
401 continue; // background color
402 }
403 SkASSERT(0 == (index - gColorOffset) % gColorScale);
404 index = (index - gColorOffset) / gColorScale;
bsalomon@google.com5f429b02013-01-08 18:42:20 +0000405 SkASSERT(static_cast<int>(index) < count);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000406 bitarray |= 1 << index;
407 }
408 }
409 }
410
411 for (int i = 0; i < count; ++i) {
412 if (bitarray & (1 << i)) {
413 *array->append() = refs[i];
414 }
415 }
416}
417
robertphillips@google.com0e4ce142014-01-13 13:46:45 +0000418static void gather_from_analytic(const SkPoint pos[], SkScalar w, SkScalar h,
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000419 const SkTDArray<SkPixelRef*> analytic[],
420 int count,
421 SkTDArray<SkPixelRef*>* result,
robertphillips@google.com0e4ce142014-01-13 13:46:45 +0000422 const SkRect& subset) {
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000423 for (int i = 0; i < count; ++i) {
424 SkRect rect = SkRect::MakeXYWH(pos[i].fX, pos[i].fY, w, h);
425
426 if (SkRect::Intersects(subset, rect)) {
427 result->append(analytic[i].count(), analytic[i].begin());
428 }
429 }
430}
431
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000432
433static const struct {
434 const DrawBitmapProc proc;
435 const char* const desc;
436} gProcs[] = {
437 {drawpaint_proc, "drawpaint"},
438 {drawpoints_proc, "drawpoints"},
439 {drawrect_proc, "drawrect"},
440 {drawoval_proc, "drawoval"},
441 {drawrrect_proc, "drawrrect"},
442 {drawpath_proc, "drawpath"},
443 {drawbitmap_proc, "drawbitmap"},
444 {drawbitmap_withshader_proc, "drawbitmap_withshader"},
445 {drawsprite_proc, "drawsprite"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000446#if 0
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000447 {drawsprite_withshader_proc, "drawsprite_withshader"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000448#endif
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000449 {drawbitmaprect_proc, "drawbitmaprect"},
450 {drawbitmaprect_withshader_proc, "drawbitmaprect_withshader"},
451 {drawtext_proc, "drawtext"},
452 {drawpostext_proc, "drawpostext"},
453 {drawtextonpath_proc, "drawtextonpath"},
454 {drawverts_proc, "drawverts"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000455};
456
457static void create_textures(SkBitmap* bm, SkPixelRef** refs, int num, int w, int h) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000458 // Our convention is that the color components contain an encoding of
459 // the index of their corresponding bitmap/pixelref. (0,0,0,0) is
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000460 // reserved for the background
461 for (int i = 0; i < num; ++i) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000462 make_bm(&bm[i], w, h,
463 SkColorSetARGB(0xFF,
464 gColorScale*i+gColorOffset,
465 gColorScale*i+gColorOffset,
466 gColorScale*i+gColorOffset),
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000467 true);
468 refs[i] = bm[i].pixelRef();
469 }
470
471 // The A8 alternate bitmaps are all BW checkerboards
472 for (int i = 0; i < num; ++i) {
473 make_checkerboard(&bm[num+i], w, h, true);
474 refs[num+i] = bm[num+i].pixelRef();
475 }
476}
477
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000478static void test_gatherpixelrefs(skiatest::Reporter* reporter) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000479 const int IW = 32;
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000480 const int IH = IW;
481 const SkScalar W = SkIntToScalar(IW);
482 const SkScalar H = W;
483
484 static const int N = 4;
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000485 SkBitmap bm[2*N];
486 SkPixelRef* refs[2*N];
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000487 SkTDArray<SkPixelRef*> analytic[N];
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000488
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000489 const SkPoint pos[N] = {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000490 { 0, 0 }, { W, 0 }, { 0, H }, { W, H }
491 };
492
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000493 create_textures(bm, refs, N, IW, IH);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000494
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000495 SkRandom rand;
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000496 for (size_t k = 0; k < SK_ARRAY_COUNT(gProcs); ++k) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000497 SkAutoTUnref<SkPicture> pic(
498 record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000499
tomhudson@google.com381010e2013-10-24 11:12:47 +0000500 REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000501 // quick check for a small piece of each quadrant, which should just
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000502 // contain 1 or 2 bitmaps.
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000503 for (size_t i = 0; i < SK_ARRAY_COUNT(pos); ++i) {
504 SkRect r;
505 r.set(2, 2, W - 2, H - 2);
506 r.offset(pos[i].fX, pos[i].fY);
507 SkAutoDataUnref data(SkPictureUtils::GatherPixelRefs(pic, r));
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000508 if (!data) {
509 ERRORF(reporter, "SkPictureUtils::GatherPixelRefs returned "
510 "NULL for %s.", gProcs[k].desc);
511 continue;
512 }
513 SkPixelRef** gatheredRefs = (SkPixelRef**)data->data();
514 int count = static_cast<int>(data->size() / sizeof(SkPixelRef*));
515 REPORTER_ASSERT(reporter, 1 == count || 2 == count);
516 if (1 == count) {
517 REPORTER_ASSERT(reporter, gatheredRefs[0] == refs[i]);
518 } else if (2 == count) {
519 REPORTER_ASSERT(reporter,
520 (gatheredRefs[0] == refs[i] && gatheredRefs[1] == refs[i+N]) ||
521 (gatheredRefs[1] == refs[i] && gatheredRefs[0] == refs[i+N]));
commit-bot@chromium.orgfe433c12013-07-09 16:04:32 +0000522 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000523 }
524
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000525 SkBitmap image;
526 draw(pic, 2*IW, 2*IH, &image);
527
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000528 // Test a bunch of random (mostly) rects, and compare the gather results
529 // with a deduced list of refs by looking at the colors drawn.
530 for (int j = 0; j < 100; ++j) {
531 SkRect r;
532 rand_rect(&r, rand, 2*W, 2*H);
533
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000534 SkTDArray<SkPixelRef*> fromImage;
535 gather_from_image(image, refs, N, &fromImage, r);
536
537 SkTDArray<SkPixelRef*> fromAnalytic;
538 gather_from_analytic(pos, W, H, analytic, N, &fromAnalytic, r);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000539
540 SkData* data = SkPictureUtils::GatherPixelRefs(pic, r);
541 size_t dataSize = data ? data->size() : 0;
robertphillips@google.come9cd27d2013-10-16 17:48:11 +0000542 int gatherCount = static_cast<int>(dataSize / sizeof(SkPixelRef*));
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000543 SkASSERT(gatherCount * sizeof(SkPixelRef*) == dataSize);
544 SkPixelRef** gatherRefs = data ? (SkPixelRef**)(data->data()) : NULL;
545 SkAutoDataUnref adu(data);
546
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000547 // Everything that we saw drawn should appear in the analytic list
548 // but the analytic list may contain some pixelRefs that were not
549 // seen in the image (e.g., A8 textures used as masks)
550 for (int i = 0; i < fromImage.count(); ++i) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000551 if (-1 == fromAnalytic.find(fromImage[i])) {
552 ERRORF(reporter, "PixelRef missing %d %s",
553 i, gProcs[k].desc);
554 }
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000555 }
skia.committer@gmail.comc3d7d902012-11-30 02:01:24 +0000556
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000557 /*
558 * GatherPixelRefs is conservative, so it can return more bitmaps
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000559 * than are strictly required. Thus our check here is only that
560 * Gather didn't miss any that we actually needed. Even that isn't
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000561 * a strict requirement on Gather, which is meant to be quick and
562 * only mostly-correct, but at the moment this test should work.
563 */
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000564 for (int i = 0; i < fromAnalytic.count(); ++i) {
565 bool found = find(gatherRefs, fromAnalytic[i], gatherCount);
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000566 if (!found) {
567 ERRORF(reporter, "PixelRef missing %d %s",
568 i, gProcs[k].desc);
569 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000570#if 0
571 // enable this block of code to debug failures, as it will rerun
572 // the case that failed.
573 if (!found) {
574 SkData* data = SkPictureUtils::GatherPixelRefs(pic, r);
575 size_t dataSize = data ? data->size() : 0;
576 }
577#endif
578 }
579 }
580 }
581}
582
tomhudson3a0f2792014-08-20 05:29:41 -0700583/* Hit a few SkPicture::Analysis cases not handled elsewhere. */
mtklein8e126562014-10-01 09:29:35 -0700584static void test_analysis(skiatest::Reporter* reporter) {
tomhudson3a0f2792014-08-20 05:29:41 -0700585 SkPictureRecorder recorder;
586
mtklein8e126562014-10-01 09:29:35 -0700587 SkCanvas* canvas = recorder.beginRecording(100, 100);
tomhudson3a0f2792014-08-20 05:29:41 -0700588 {
589 canvas->drawRect(SkRect::MakeWH(10, 10), SkPaint ());
590 }
591 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
592 REPORTER_ASSERT(reporter, !picture->willPlayBackBitmaps());
593
mtklein8e126562014-10-01 09:29:35 -0700594 canvas = recorder.beginRecording(100, 100);
tomhudson3a0f2792014-08-20 05:29:41 -0700595 {
596 SkPaint paint;
597 // CreateBitmapShader is too smart for us; an empty (or 1x1) bitmap shader
598 // gets optimized into a non-bitmap form, so we create a 2x2 bitmap here.
599 SkBitmap bitmap;
600 bitmap.allocPixels(SkImageInfo::MakeN32Premul(2, 2));
601 bitmap.eraseColor(SK_ColorBLUE);
602 *(bitmap.getAddr32(0, 0)) = SK_ColorGREEN;
603 SkShader* shader = SkShader::CreateBitmapShader(bitmap, SkShader::kClamp_TileMode,
604 SkShader::kClamp_TileMode);
605 paint.setShader(shader)->unref();
606 REPORTER_ASSERT(reporter,
607 shader->asABitmap(NULL, NULL, NULL) == SkShader::kDefault_BitmapType);
608
609 canvas->drawRect(SkRect::MakeWH(10, 10), paint);
610 }
611 picture.reset(recorder.endRecording());
612 REPORTER_ASSERT(reporter, picture->willPlayBackBitmaps());
613}
614
615
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000616static void test_gatherpixelrefsandrects(skiatest::Reporter* reporter) {
617 const int IW = 32;
618 const int IH = IW;
619 const SkScalar W = SkIntToScalar(IW);
620 const SkScalar H = W;
621
622 static const int N = 4;
623 SkBitmap bm[2*N];
624 SkPixelRef* refs[2*N];
625 SkTDArray<SkPixelRef*> analytic[N];
626
627 const SkPoint pos[N] = {
628 { 0, 0 }, { W, 0 }, { 0, H }, { W, H }
629 };
630
631 create_textures(bm, refs, N, IW, IH);
632
633 SkRandom rand;
634 for (size_t k = 0; k < SK_ARRAY_COUNT(gProcs); ++k) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000635 SkAutoTUnref<SkPicture> pic(
636 record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000637
638 REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
639
640 SkAutoTUnref<SkPictureUtils::SkPixelRefContainer> prCont(
641 new SkPictureUtils::SkPixelRefsAndRectsList);
642
643 SkPictureUtils::GatherPixelRefsAndRects(pic, prCont);
644
645 // quick check for a small piece of each quadrant, which should just
646 // contain 1 or 2 bitmaps.
647 for (size_t i = 0; i < SK_ARRAY_COUNT(pos); ++i) {
648 SkRect r;
649 r.set(2, 2, W - 2, H - 2);
650 r.offset(pos[i].fX, pos[i].fY);
651
652 SkTDArray<SkPixelRef*> gatheredRefs;
653 prCont->query(r, &gatheredRefs);
654
655 int count = gatheredRefs.count();
656 REPORTER_ASSERT(reporter, 1 == count || 2 == count);
657 if (1 == count) {
658 REPORTER_ASSERT(reporter, gatheredRefs[0] == refs[i]);
659 } else if (2 == count) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000660 REPORTER_ASSERT(reporter,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000661 (gatheredRefs[0] == refs[i] && gatheredRefs[1] == refs[i+N]) ||
662 (gatheredRefs[1] == refs[i] && gatheredRefs[0] == refs[i+N]));
663 }
664 }
665
666 SkBitmap image;
667 draw(pic, 2*IW, 2*IH, &image);
668
669 // Test a bunch of random (mostly) rects, and compare the gather results
670 // with the analytic results and the pixel refs seen in a rendering.
671 for (int j = 0; j < 100; ++j) {
672 SkRect r;
673 rand_rect(&r, rand, 2*W, 2*H);
674
675 SkTDArray<SkPixelRef*> fromImage;
676 gather_from_image(image, refs, N, &fromImage, r);
677
678 SkTDArray<SkPixelRef*> fromAnalytic;
679 gather_from_analytic(pos, W, H, analytic, N, &fromAnalytic, r);
680
681 SkTDArray<SkPixelRef*> gatheredRefs;
682 prCont->query(r, &gatheredRefs);
683
684 // Everything that we saw drawn should appear in the analytic list
685 // but the analytic list may contain some pixelRefs that were not
686 // seen in the image (e.g., A8 textures used as masks)
687 for (int i = 0; i < fromImage.count(); ++i) {
688 REPORTER_ASSERT(reporter, -1 != fromAnalytic.find(fromImage[i]));
689 }
690
691 // Everything in the analytic list should appear in the gathered
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000692 // list.
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000693 for (int i = 0; i < fromAnalytic.count(); ++i) {
694 REPORTER_ASSERT(reporter, -1 != gatheredRefs.find(fromAnalytic[i]));
695 }
696 }
697 }
698}
699
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000700#ifdef SK_DEBUG
mtklein3e8232b2014-08-18 13:39:11 -0700701// Ensure that deleting an empty SkPicture does not assert. Asserts only fire
robertphillipsdb539902014-07-01 08:47:04 -0700702// in debug mode, so only run in debug mode.
703static void test_deleting_empty_picture() {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000704 SkPictureRecorder recorder;
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000705 // Creates an SkPictureRecord
robertphillips9f1c2412014-06-09 06:25:34 -0700706 recorder.beginRecording(0, 0);
robertphillipsdb539902014-07-01 08:47:04 -0700707 // Turns that into an SkPicture
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000708 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
robertphillipsdb539902014-07-01 08:47:04 -0700709 // Ceates a new SkPictureRecord
robertphillips9f1c2412014-06-09 06:25:34 -0700710 recorder.beginRecording(0, 0);
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000711}
712
713// Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode.
714static void test_serializing_empty_picture() {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000715 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -0700716 recorder.beginRecording(0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000717 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000718 SkDynamicMemoryWStream stream;
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000719 picture->serialize(&stream);
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000720}
721#endif
722
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000723static void rand_op(SkCanvas* canvas, SkRandom& rand) {
reed@google.com21b519d2012-10-02 17:42:15 +0000724 SkPaint paint;
725 SkRect rect = SkRect::MakeWH(50, 50);
726
727 SkScalar unit = rand.nextUScalar1();
728 if (unit <= 0.3) {
729// SkDebugf("save\n");
730 canvas->save();
731 } else if (unit <= 0.6) {
732// SkDebugf("restore\n");
733 canvas->restore();
734 } else if (unit <= 0.9) {
735// SkDebugf("clip\n");
736 canvas->clipRect(rect);
737 } else {
738// SkDebugf("draw\n");
739 canvas->drawPaint(paint);
740 }
741}
742
robertphillips@google.comb950c6f2014-04-25 00:02:12 +0000743#if SK_SUPPORT_GPU
tomhudson3a0f2792014-08-20 05:29:41 -0700744
mtklein8e126562014-10-01 09:29:35 -0700745static void test_gpu_veto(skiatest::Reporter* reporter) {
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000746 SkPictureRecorder recorder;
747
mtklein8e126562014-10-01 09:29:35 -0700748 SkCanvas* canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000749 {
750 SkPath path;
751 path.moveTo(0, 0);
752 path.lineTo(50, 50);
753
754 SkScalar intervals[] = { 1.0f, 1.0f };
755 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
756
757 SkPaint paint;
758 paint.setStyle(SkPaint::kStroke_Style);
759 paint.setPathEffect(dash);
760
761 canvas->drawPath(path, paint);
762 }
763 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
764 // path effects currently render an SkPicture undesireable for GPU rendering
commit-bot@chromium.orga1ff26a2014-05-30 21:52:52 +0000765
766 const char *reason = NULL;
767 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL, &reason));
bsalomon49f085d2014-09-05 13:34:00 -0700768 REPORTER_ASSERT(reporter, reason);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000769
mtklein8e126562014-10-01 09:29:35 -0700770 canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000771 {
772 SkPath path;
773
774 path.moveTo(0, 0);
775 path.lineTo(0, 50);
776 path.lineTo(25, 25);
777 path.lineTo(50, 50);
778 path.lineTo(50, 0);
779 path.close();
780 REPORTER_ASSERT(reporter, !path.isConvex());
781
782 SkPaint paint;
783 paint.setAntiAlias(true);
784 for (int i = 0; i < 50; ++i) {
785 canvas->drawPath(path, paint);
786 }
787 }
788 picture.reset(recorder.endRecording());
789 // A lot of AA concave paths currently render an SkPicture undesireable for GPU rendering
790 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
791
mtklein8e126562014-10-01 09:29:35 -0700792 canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000793 {
794 SkPath path;
795
796 path.moveTo(0, 0);
797 path.lineTo(0, 50);
798 path.lineTo(25, 25);
799 path.lineTo(50, 50);
800 path.lineTo(50, 0);
801 path.close();
802 REPORTER_ASSERT(reporter, !path.isConvex());
803
804 SkPaint paint;
805 paint.setAntiAlias(true);
806 paint.setStyle(SkPaint::kStroke_Style);
807 paint.setStrokeWidth(0);
808 for (int i = 0; i < 50; ++i) {
809 canvas->drawPath(path, paint);
810 }
811 }
812 picture.reset(recorder.endRecording());
813 // hairline stroked AA concave paths are fine for GPU rendering
814 REPORTER_ASSERT(reporter, picture->suitableForGpuRasterization(NULL));
tomhudson3a0f2792014-08-20 05:29:41 -0700815
mtklein8e126562014-10-01 09:29:35 -0700816 canvas = recorder.beginRecording(100, 100);
tomhudson3a0f2792014-08-20 05:29:41 -0700817 {
818 SkPaint paint;
819 SkScalar intervals [] = { 10, 20 };
820 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25);
821 paint.setPathEffect(pe)->unref();
822
823 SkPoint points [2] = { { 0, 0 }, { 100, 0 } };
824 canvas->drawPoints(SkCanvas::kLines_PointMode, 2, points, paint);
825 }
826 picture.reset(recorder.endRecording());
827 // fast-path dashed effects are fine for GPU rendering ...
828 REPORTER_ASSERT(reporter, picture->suitableForGpuRasterization(NULL));
829
mtklein8e126562014-10-01 09:29:35 -0700830 canvas = recorder.beginRecording(100, 100);
tomhudson3a0f2792014-08-20 05:29:41 -0700831 {
832 SkPaint paint;
833 SkScalar intervals [] = { 10, 20 };
834 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25);
835 paint.setPathEffect(pe)->unref();
836
837 canvas->drawRect(SkRect::MakeWH(10, 10), paint);
838 }
839 picture.reset(recorder.endRecording());
840 // ... but only when applied to drawPoint() calls
841 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
mtklein53fecfb2014-08-21 09:11:37 -0700842
843 // Nest the previous picture inside a new one.
mtklein8e126562014-10-01 09:29:35 -0700844 canvas = recorder.beginRecording(100, 100);
845 {
846 canvas->drawPicture(picture.get());
mtklein53fecfb2014-08-21 09:11:37 -0700847 }
mtklein8e126562014-10-01 09:29:35 -0700848 picture.reset(recorder.endRecording());
849 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000850}
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000851
852static void test_gpu_picture_optimization(skiatest::Reporter* reporter,
853 GrContextFactory* factory) {
bsalomone904c092014-07-17 10:50:59 -0700854 for (int i= 0; i < GrContextFactory::kGLContextTypeCnt; ++i) {
855 GrContextFactory::GLContextType glCtxType = (GrContextFactory::GLContextType) i;
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000856
bsalomone904c092014-07-17 10:50:59 -0700857 if (!GrContextFactory::IsRenderingGLContext(glCtxType)) {
858 continue;
859 }
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000860
bsalomone904c092014-07-17 10:50:59 -0700861 GrContext* context = factory->get(glCtxType);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000862
bsalomone904c092014-07-17 10:50:59 -0700863 if (NULL == context) {
864 continue;
865 }
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000866
bsalomone904c092014-07-17 10:50:59 -0700867 static const int kWidth = 100;
868 static const int kHeight = 100;
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000869
robertphillipsd8aa7b72014-10-30 16:45:02 -0700870 // Create complex paint that the bounding box computation code can't
871 // optimize away
872 SkScalar blueToRedMatrix[20] = { 0 };
873 blueToRedMatrix[2] = blueToRedMatrix[18] = SK_Scalar1;
874 SkAutoTUnref<SkColorFilter> blueToRed(SkColorMatrixFilter::Create(blueToRedMatrix));
875 SkAutoTUnref<SkImageFilter> filter(SkColorFilterImageFilter::Create(blueToRed.get()));
876
877 SkPaint complexPaint;
878 complexPaint.setImageFilter(filter);
879
robertphillipsd6283302014-08-27 11:53:28 -0700880 SkAutoTUnref<SkPicture> pict, child;
881
882 {
883 SkPictureRecorder recorder;
884
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700885 SkCanvas* c = recorder.beginRecording(SkIntToScalar(kWidth), SkIntToScalar(kHeight));
robertphillipsd6283302014-08-27 11:53:28 -0700886
robertphillipsd8aa7b72014-10-30 16:45:02 -0700887 c->saveLayer(NULL, &complexPaint);
robertphillipsd6283302014-08-27 11:53:28 -0700888 c->restore();
889
890 child.reset(recorder.endRecording());
891 }
bsalomone904c092014-07-17 10:50:59 -0700892
893 // create a picture with the structure:
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000894 // 1)
bsalomone904c092014-07-17 10:50:59 -0700895 // SaveLayer
896 // Restore
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000897 // 2)
bsalomone904c092014-07-17 10:50:59 -0700898 // SaveLayer
899 // Translate
900 // SaveLayer w/ bound
901 // Restore
902 // Restore
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000903 // 3)
bsalomone904c092014-07-17 10:50:59 -0700904 // SaveLayer w/ copyable paint
905 // Restore
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000906 // 4)
robertphillipsd6283302014-08-27 11:53:28 -0700907 // SaveLayer
908 // DrawPicture (which has a SaveLayer/Restore pair)
909 // Restore
910 // 5)
911 // SaveLayer
912 // DrawPicture with Matrix & Paint (with SaveLayer/Restore pair)
bsalomone904c092014-07-17 10:50:59 -0700913 // Restore
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000914 {
bsalomone904c092014-07-17 10:50:59 -0700915 SkPictureRecorder recorder;
916
mtklein87c41382014-09-08 07:31:18 -0700917 SkCanvas* c = recorder.beginRecording(SkIntToScalar(kWidth),
robertphillipsa8d7f0b2014-08-29 08:03:56 -0700918 SkIntToScalar(kHeight));
bsalomone904c092014-07-17 10:50:59 -0700919 // 1)
robertphillipsd8aa7b72014-10-30 16:45:02 -0700920 c->saveLayer(NULL, &complexPaint); // layer #0
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000921 c->restore();
bsalomone904c092014-07-17 10:50:59 -0700922
923 // 2)
robertphillipsd6283302014-08-27 11:53:28 -0700924 c->saveLayer(NULL, NULL); // layer #1
925 c->translate(kWidth/2.0f, kHeight/2.0f);
bsalomone904c092014-07-17 10:50:59 -0700926 SkRect r = SkRect::MakeXYWH(0, 0, kWidth/2, kHeight/2);
robertphillipsd8aa7b72014-10-30 16:45:02 -0700927 c->saveLayer(&r, &complexPaint); // layer #2
bsalomone904c092014-07-17 10:50:59 -0700928 c->restore();
929 c->restore();
930
931 // 3)
932 {
robertphillipsd8aa7b72014-10-30 16:45:02 -0700933 c->saveLayer(NULL, &complexPaint); // layer #3
bsalomone904c092014-07-17 10:50:59 -0700934 c->restore();
935 }
mtklein93f52a62014-09-08 08:41:37 -0700936
937 SkPaint layerPaint;
938 layerPaint.setColor(SK_ColorRED); // Non-alpha only to avoid SaveLayerDrawRestoreNooper
bsalomone904c092014-07-17 10:50:59 -0700939 // 4)
robertphillipsd6283302014-08-27 11:53:28 -0700940 {
mtklein93f52a62014-09-08 08:41:37 -0700941 c->saveLayer(NULL, &layerPaint); // layer #4
robertphillipsd6283302014-08-27 11:53:28 -0700942 c->drawPicture(child); // layer #5 inside picture
943 c->restore();
944 }
945 // 5
bsalomone904c092014-07-17 10:50:59 -0700946 {
mtklein93f52a62014-09-08 08:41:37 -0700947 SkPaint picturePaint;
robertphillipsd6283302014-08-27 11:53:28 -0700948 SkMatrix trans;
949 trans.setTranslate(10, 10);
950
mtklein93f52a62014-09-08 08:41:37 -0700951 c->saveLayer(NULL, &layerPaint); // layer #6
952 c->drawPicture(child, &trans, &picturePaint); // layer #7 inside picture
bsalomone904c092014-07-17 10:50:59 -0700953 c->restore();
954 }
955
956 pict.reset(recorder.endRecording());
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000957 }
958
bsalomone904c092014-07-17 10:50:59 -0700959 // Now test out the SaveLayer extraction
960 {
961 SkImageInfo info = SkImageInfo::MakeN32Premul(kWidth, kHeight);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000962
bsalomone904c092014-07-17 10:50:59 -0700963 SkAutoTUnref<SkSurface> surface(SkSurface::NewScratchRenderTarget(context, info));
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000964
bsalomone904c092014-07-17 10:50:59 -0700965 SkCanvas* canvas = surface->getCanvas();
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000966
bsalomone904c092014-07-17 10:50:59 -0700967 canvas->EXPERIMENTAL_optimize(pict);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000968
robertphillips6617d502014-08-18 09:39:34 -0700969 SkPicture::AccelData::Key key = GrAccelData::ComputeAccelDataKey();
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000970
bsalomone904c092014-07-17 10:50:59 -0700971 const SkPicture::AccelData* data = pict->EXPERIMENTAL_getAccelData(key);
bsalomon49f085d2014-09-05 13:34:00 -0700972 REPORTER_ASSERT(reporter, data);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000973
robertphillips6617d502014-08-18 09:39:34 -0700974 const GrAccelData *gpuData = static_cast<const GrAccelData*>(data);
robertphillipsd6283302014-08-27 11:53:28 -0700975 REPORTER_ASSERT(reporter, 8 == gpuData->numSaveLayers());
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000976
robertphillips6617d502014-08-18 09:39:34 -0700977 const GrAccelData::SaveLayerInfo& info0 = gpuData->saveLayerInfo(0);
robertphillipsd6283302014-08-27 11:53:28 -0700978 // The parent/child layers appear in reverse order
robertphillips6617d502014-08-18 09:39:34 -0700979 const GrAccelData::SaveLayerInfo& info1 = gpuData->saveLayerInfo(2);
980 const GrAccelData::SaveLayerInfo& info2 = gpuData->saveLayerInfo(1);
robertphillipsd6283302014-08-27 11:53:28 -0700981
robertphillips6617d502014-08-18 09:39:34 -0700982 const GrAccelData::SaveLayerInfo& info3 = gpuData->saveLayerInfo(3);
robertphillipsd6283302014-08-27 11:53:28 -0700983
984 // The parent/child layers appear in reverse order
985 const GrAccelData::SaveLayerInfo& info4 = gpuData->saveLayerInfo(5);
986 const GrAccelData::SaveLayerInfo& info5 = gpuData->saveLayerInfo(4);
987
988 // The parent/child layers appear in reverse order
989 const GrAccelData::SaveLayerInfo& info6 = gpuData->saveLayerInfo(7);
990 const GrAccelData::SaveLayerInfo& info7 = gpuData->saveLayerInfo(6);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000991
robertphillips30d2cc62014-09-24 08:52:18 -0700992 REPORTER_ASSERT(reporter, NULL == info0.fPicture);
robertphillips3aac6e02014-10-20 08:52:40 -0700993 REPORTER_ASSERT(reporter, kWidth == info0.fBounds.width() &&
994 kHeight == info0.fBounds.height());
robertphillips9e6835d2014-10-22 05:33:52 -0700995 REPORTER_ASSERT(reporter, info0.fLocalMat.isIdentity());
996 REPORTER_ASSERT(reporter, info0.fPreMat.isIdentity());
robertphillips3aac6e02014-10-20 08:52:40 -0700997 REPORTER_ASSERT(reporter, 0 == info0.fBounds.fLeft && 0 == info0.fBounds.fTop);
robertphillipsd8aa7b72014-10-30 16:45:02 -0700998 REPORTER_ASSERT(reporter, NULL != info0.fPaint);
bsalomone904c092014-07-17 10:50:59 -0700999 REPORTER_ASSERT(reporter, !info0.fIsNested && !info0.fHasNestedLayers);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001000
robertphillips30d2cc62014-09-24 08:52:18 -07001001 REPORTER_ASSERT(reporter, NULL == info1.fPicture);
robertphillips3aac6e02014-10-20 08:52:40 -07001002 REPORTER_ASSERT(reporter, kWidth == info1.fBounds.width() &&
1003 kHeight == info1.fBounds.height());
robertphillips9e6835d2014-10-22 05:33:52 -07001004 REPORTER_ASSERT(reporter, info1.fLocalMat.isIdentity());
1005 REPORTER_ASSERT(reporter, info1.fPreMat.isIdentity());
robertphillips3aac6e02014-10-20 08:52:40 -07001006 REPORTER_ASSERT(reporter, 0 == info1.fBounds.fLeft && 0 == info1.fBounds.fTop);
robertphillipsd6283302014-08-27 11:53:28 -07001007 REPORTER_ASSERT(reporter, NULL == info1.fPaint);
mtklein87c41382014-09-08 07:31:18 -07001008 REPORTER_ASSERT(reporter, !info1.fIsNested &&
robertphillipsd6283302014-08-27 11:53:28 -07001009 info1.fHasNestedLayers); // has a nested SL
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001010
robertphillips30d2cc62014-09-24 08:52:18 -07001011 REPORTER_ASSERT(reporter, NULL == info2.fPicture);
robertphillips3aac6e02014-10-20 08:52:40 -07001012 REPORTER_ASSERT(reporter, kWidth / 2 == info2.fBounds.width() &&
1013 kHeight / 2 == info2.fBounds.height()); // bound reduces size
robertphillips9e6835d2014-10-22 05:33:52 -07001014 REPORTER_ASSERT(reporter, !info2.fLocalMat.isIdentity());
1015 REPORTER_ASSERT(reporter, info2.fPreMat.isIdentity());
robertphillips3aac6e02014-10-20 08:52:40 -07001016 REPORTER_ASSERT(reporter, kWidth / 2 == info2.fBounds.fLeft && // translated
1017 kHeight / 2 == info2.fBounds.fTop);
robertphillipsd8aa7b72014-10-30 16:45:02 -07001018 REPORTER_ASSERT(reporter, NULL != info2.fPaint);
bsalomone904c092014-07-17 10:50:59 -07001019 REPORTER_ASSERT(reporter, info2.fIsNested && !info2.fHasNestedLayers); // is nested
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001020
robertphillips30d2cc62014-09-24 08:52:18 -07001021 REPORTER_ASSERT(reporter, NULL == info3.fPicture);
robertphillips3aac6e02014-10-20 08:52:40 -07001022 REPORTER_ASSERT(reporter, kWidth == info3.fBounds.width() &&
1023 kHeight == info3.fBounds.height());
robertphillips9e6835d2014-10-22 05:33:52 -07001024 REPORTER_ASSERT(reporter, info3.fLocalMat.isIdentity());
1025 REPORTER_ASSERT(reporter, info3.fPreMat.isIdentity());
robertphillips3aac6e02014-10-20 08:52:40 -07001026 REPORTER_ASSERT(reporter, 0 == info3.fBounds.fLeft && 0 == info3.fBounds.fTop);
bsalomon49f085d2014-09-05 13:34:00 -07001027 REPORTER_ASSERT(reporter, info3.fPaint);
bsalomone904c092014-07-17 10:50:59 -07001028 REPORTER_ASSERT(reporter, !info3.fIsNested && !info3.fHasNestedLayers);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001029
robertphillips30d2cc62014-09-24 08:52:18 -07001030 REPORTER_ASSERT(reporter, NULL == info4.fPicture);
robertphillips3aac6e02014-10-20 08:52:40 -07001031 REPORTER_ASSERT(reporter, kWidth == info4.fBounds.width() &&
1032 kHeight == info4.fBounds.height());
1033 REPORTER_ASSERT(reporter, 0 == info4.fBounds.fLeft && 0 == info4.fBounds.fTop);
robertphillips9e6835d2014-10-22 05:33:52 -07001034 REPORTER_ASSERT(reporter, info4.fLocalMat.isIdentity());
1035 REPORTER_ASSERT(reporter, info4.fPreMat.isIdentity());
mtklein93f52a62014-09-08 08:41:37 -07001036 REPORTER_ASSERT(reporter, info4.fPaint);
mtklein87c41382014-09-08 07:31:18 -07001037 REPORTER_ASSERT(reporter, !info4.fIsNested &&
robertphillipsd6283302014-08-27 11:53:28 -07001038 info4.fHasNestedLayers); // has a nested SL
1039
robertphillips30d2cc62014-09-24 08:52:18 -07001040 REPORTER_ASSERT(reporter, child == info5.fPicture); // in a child picture
robertphillips3aac6e02014-10-20 08:52:40 -07001041 REPORTER_ASSERT(reporter, kWidth == info5.fBounds.width() &&
1042 kHeight == info5.fBounds.height());
1043 REPORTER_ASSERT(reporter, 0 == info5.fBounds.fLeft && 0 == info5.fBounds.fTop);
robertphillips9e6835d2014-10-22 05:33:52 -07001044 REPORTER_ASSERT(reporter, info5.fLocalMat.isIdentity());
1045 REPORTER_ASSERT(reporter, info5.fPreMat.isIdentity());
robertphillipsd8aa7b72014-10-30 16:45:02 -07001046 REPORTER_ASSERT(reporter, NULL != info5.fPaint);
robertphillipsd6283302014-08-27 11:53:28 -07001047 REPORTER_ASSERT(reporter, info5.fIsNested && !info5.fHasNestedLayers); // is nested
1048
robertphillips30d2cc62014-09-24 08:52:18 -07001049 REPORTER_ASSERT(reporter, NULL == info6.fPicture);
robertphillipsd8aa7b72014-10-30 16:45:02 -07001050 REPORTER_ASSERT(reporter, kWidth-10 == info6.fBounds.width() &&
1051 kHeight-10 == info6.fBounds.height());
1052 REPORTER_ASSERT(reporter, 10 == info6.fBounds.fLeft && 10 == info6.fBounds.fTop);
robertphillips9e6835d2014-10-22 05:33:52 -07001053 REPORTER_ASSERT(reporter, info6.fLocalMat.isIdentity());
1054 REPORTER_ASSERT(reporter, info6.fPreMat.isIdentity());
mtklein93f52a62014-09-08 08:41:37 -07001055 REPORTER_ASSERT(reporter, info6.fPaint);
mtklein87c41382014-09-08 07:31:18 -07001056 REPORTER_ASSERT(reporter, !info6.fIsNested &&
robertphillipsd6283302014-08-27 11:53:28 -07001057 info6.fHasNestedLayers); // has a nested SL
1058
robertphillips30d2cc62014-09-24 08:52:18 -07001059 REPORTER_ASSERT(reporter, child == info7.fPicture); // in a child picture
robertphillips3aac6e02014-10-20 08:52:40 -07001060 REPORTER_ASSERT(reporter, kWidth == info7.fBounds.width() &&
1061 kHeight == info7.fBounds.height());
1062 REPORTER_ASSERT(reporter, 0 == info7.fBounds.fLeft && 0 == info7.fBounds.fTop);
robertphillips9e6835d2014-10-22 05:33:52 -07001063 REPORTER_ASSERT(reporter, info7.fLocalMat.isIdentity());
1064 REPORTER_ASSERT(reporter, info7.fPreMat.isIdentity());
robertphillipsd8aa7b72014-10-30 16:45:02 -07001065 REPORTER_ASSERT(reporter, NULL != info7.fPaint);
robertphillipsd6283302014-08-27 11:53:28 -07001066 REPORTER_ASSERT(reporter, info7.fIsNested && !info7.fHasNestedLayers); // is nested
bsalomone904c092014-07-17 10:50:59 -07001067 }
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001068 }
1069}
1070
robertphillips@google.comb950c6f2014-04-25 00:02:12 +00001071#endif
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +00001072
mtklein8e126562014-10-01 09:29:35 -07001073static void test_has_text(skiatest::Reporter* reporter) {
ajuma750ae262014-08-18 12:59:55 -07001074 SkPictureRecorder recorder;
ajuma750ae262014-08-18 12:59:55 -07001075
mtklein8e126562014-10-01 09:29:35 -07001076 SkCanvas* canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001077 {
mtkleinc551d9f2014-08-20 08:09:46 -07001078 canvas->drawRect(SkRect::MakeWH(20, 20), SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001079 }
1080 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1081 REPORTER_ASSERT(reporter, !picture->hasText());
1082
mtkleinc551d9f2014-08-20 08:09:46 -07001083 SkPoint point = SkPoint::Make(10, 10);
mtklein8e126562014-10-01 09:29:35 -07001084 canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001085 {
mtkleinc551d9f2014-08-20 08:09:46 -07001086 canvas->drawText("Q", 1, point.fX, point.fY, SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001087 }
1088 picture.reset(recorder.endRecording());
1089 REPORTER_ASSERT(reporter, picture->hasText());
1090
mtklein8e126562014-10-01 09:29:35 -07001091 canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001092 {
mtkleinc551d9f2014-08-20 08:09:46 -07001093 canvas->drawPosText("Q", 1, &point, SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001094 }
1095 picture.reset(recorder.endRecording());
1096 REPORTER_ASSERT(reporter, picture->hasText());
1097
mtklein8e126562014-10-01 09:29:35 -07001098 canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001099 {
mtkleinc551d9f2014-08-20 08:09:46 -07001100 canvas->drawPosTextH("Q", 1, &point.fX, point.fY, SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001101 }
1102 picture.reset(recorder.endRecording());
1103 REPORTER_ASSERT(reporter, picture->hasText());
1104
mtklein8e126562014-10-01 09:29:35 -07001105 canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001106 {
1107 SkPath path;
1108 path.moveTo(0, 0);
1109 path.lineTo(50, 50);
1110
mtkleinc551d9f2014-08-20 08:09:46 -07001111 canvas->drawTextOnPathHV("Q", 1, path, point.fX, point.fY, SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001112 }
1113 picture.reset(recorder.endRecording());
1114 REPORTER_ASSERT(reporter, picture->hasText());
1115
mtklein8e126562014-10-01 09:29:35 -07001116 canvas = recorder.beginRecording(100,100);
ajuma750ae262014-08-18 12:59:55 -07001117 {
1118 SkPath path;
1119 path.moveTo(0, 0);
1120 path.lineTo(50, 50);
1121
mtkleinc551d9f2014-08-20 08:09:46 -07001122 canvas->drawTextOnPath("Q", 1, path, NULL, SkPaint());
ajuma750ae262014-08-18 12:59:55 -07001123 }
1124 picture.reset(recorder.endRecording());
1125 REPORTER_ASSERT(reporter, picture->hasText());
mtklein53fecfb2014-08-21 09:11:37 -07001126
1127 // Nest the previous picture inside a new one.
mtklein8e126562014-10-01 09:29:35 -07001128 canvas = recorder.beginRecording(100,100);
1129 {
1130 canvas->drawPicture(picture.get());
mtklein53fecfb2014-08-21 09:11:37 -07001131 }
mtklein8e126562014-10-01 09:29:35 -07001132 picture.reset(recorder.endRecording());
1133 REPORTER_ASSERT(reporter, picture->hasText());
ajuma750ae262014-08-18 12:59:55 -07001134}
1135
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001136static void set_canvas_to_save_count_4(SkCanvas* canvas) {
1137 canvas->restoreToCount(1);
1138 canvas->save();
1139 canvas->save();
1140 canvas->save();
1141}
1142
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001143/**
1144 * A canvas that records the number of saves, saveLayers and restores.
1145 */
1146class SaveCountingCanvas : public SkCanvas {
1147public:
1148 SaveCountingCanvas(int width, int height)
1149 : INHERITED(width, height)
1150 , fSaveCount(0)
1151 , fSaveLayerCount(0)
1152 , fRestoreCount(0){
1153 }
1154
1155 virtual SaveLayerStrategy willSaveLayer(const SkRect* bounds, const SkPaint* paint,
1156 SaveFlags flags) SK_OVERRIDE {
1157 ++fSaveLayerCount;
1158 return this->INHERITED::willSaveLayer(bounds, paint, flags);
1159 }
1160
Florin Malita5f6102d2014-06-30 10:13:28 -04001161 virtual void willSave() SK_OVERRIDE {
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001162 ++fSaveCount;
Florin Malita5f6102d2014-06-30 10:13:28 -04001163 this->INHERITED::willSave();
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001164 }
1165
1166 virtual void willRestore() SK_OVERRIDE {
1167 ++fRestoreCount;
1168 this->INHERITED::willRestore();
1169 }
1170
1171 unsigned int getSaveCount() const { return fSaveCount; }
1172 unsigned int getSaveLayerCount() const { return fSaveLayerCount; }
1173 unsigned int getRestoreCount() const { return fRestoreCount; }
1174
1175private:
1176 unsigned int fSaveCount;
1177 unsigned int fSaveLayerCount;
1178 unsigned int fRestoreCount;
1179
1180 typedef SkCanvas INHERITED;
1181};
1182
skia.committer@gmail.com8e7d37d2014-05-28 03:06:06 +00001183void check_save_state(skiatest::Reporter* reporter, SkPicture* picture,
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001184 unsigned int numSaves, unsigned int numSaveLayers,
1185 unsigned int numRestores) {
mtklein87c41382014-09-08 07:31:18 -07001186 SaveCountingCanvas canvas(SkScalarCeilToInt(picture->cullRect().width()),
robertphillipsa8d7f0b2014-08-29 08:03:56 -07001187 SkScalarCeilToInt(picture->cullRect().height()));
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001188
robertphillipsc5ba71d2014-09-04 08:42:50 -07001189 picture->playback(&canvas);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001190
mtklein87c41382014-09-08 07:31:18 -07001191 // Optimizations may have removed these,
1192 // so expect to have seen no more than num{Saves,SaveLayers,Restores}.
1193 REPORTER_ASSERT(reporter, numSaves >= canvas.getSaveCount());
1194 REPORTER_ASSERT(reporter, numSaveLayers >= canvas.getSaveLayerCount());
1195 REPORTER_ASSERT(reporter, numRestores >= canvas.getRestoreCount());
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001196}
1197
1198// This class exists so SkPicture can friend it and give it access to
1199// the 'partialReplay' method.
1200class SkPictureRecorderReplayTester {
1201public:
1202 static SkPicture* Copy(SkPictureRecorder* recorder) {
1203 SkPictureRecorder recorder2;
1204
robertphillips9f1c2412014-06-09 06:25:34 -07001205 SkCanvas* canvas = recorder2.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001206
1207 recorder->partialReplay(canvas);
1208
1209 return recorder2.endRecording();
1210 }
1211};
1212
robertphillips9058d602014-06-10 11:45:46 -07001213static void create_imbalance(SkCanvas* canvas) {
1214 SkRect clipRect = SkRect::MakeWH(2, 2);
1215 SkRect drawRect = SkRect::MakeWH(10, 10);
1216 canvas->save();
1217 canvas->clipRect(clipRect, SkRegion::kReplace_Op);
1218 canvas->translate(1.0f, 1.0f);
1219 SkPaint p;
1220 p.setColor(SK_ColorGREEN);
1221 canvas->drawRect(drawRect, p);
1222 // no restore
1223}
1224
1225// This tests that replaying a potentially unbalanced picture into a canvas
1226// doesn't affect the canvas' save count or matrix/clip state.
1227static void check_balance(skiatest::Reporter* reporter, SkPicture* picture) {
1228 SkBitmap bm;
1229 bm.allocN32Pixels(4, 3);
1230 SkCanvas canvas(bm);
1231
1232 int beforeSaveCount = canvas.getSaveCount();
1233
1234 SkMatrix beforeMatrix = canvas.getTotalMatrix();
1235
1236 SkRect beforeClip;
1237
1238 canvas.getClipBounds(&beforeClip);
1239
1240 canvas.drawPicture(picture);
1241
1242 REPORTER_ASSERT(reporter, beforeSaveCount == canvas.getSaveCount());
1243 REPORTER_ASSERT(reporter, beforeMatrix == canvas.getTotalMatrix());
1244
1245 SkRect afterClip;
1246
1247 canvas.getClipBounds(&afterClip);
1248
1249 REPORTER_ASSERT(reporter, afterClip == beforeClip);
1250}
1251
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001252// Test out SkPictureRecorder::partialReplay
1253DEF_TEST(PictureRecorder_replay, reporter) {
1254 // check save/saveLayer state
1255 {
1256 SkPictureRecorder recorder;
1257
robertphillips9f1c2412014-06-09 06:25:34 -07001258 SkCanvas* canvas = recorder.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001259
1260 canvas->saveLayer(NULL, NULL);
1261
1262 SkAutoTUnref<SkPicture> copy(SkPictureRecorderReplayTester::Copy(&recorder));
1263
1264 // The extra save and restore comes from the Copy process.
1265 check_save_state(reporter, copy, 2, 1, 3);
1266
1267 canvas->saveLayer(NULL, NULL);
1268
1269 SkAutoTUnref<SkPicture> final(recorder.endRecording());
1270
1271 check_save_state(reporter, final, 1, 2, 3);
1272
1273 // The copy shouldn't pick up any operations added after it was made
1274 check_save_state(reporter, copy, 2, 1, 3);
1275 }
1276
1277 // (partially) check leakage of draw ops
1278 {
1279 SkPictureRecorder recorder;
1280
robertphillips9f1c2412014-06-09 06:25:34 -07001281 SkCanvas* canvas = recorder.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001282
1283 SkRect r = SkRect::MakeWH(5, 5);
1284 SkPaint p;
1285
1286 canvas->drawRect(r, p);
1287
1288 SkAutoTUnref<SkPicture> copy(SkPictureRecorderReplayTester::Copy(&recorder));
1289
1290 REPORTER_ASSERT(reporter, !copy->willPlayBackBitmaps());
1291
1292 SkBitmap bm;
1293 make_bm(&bm, 10, 10, SK_ColorRED, true);
1294
1295 r.offset(5.0f, 5.0f);
1296 canvas->drawBitmapRectToRect(bm, NULL, r);
1297
1298 SkAutoTUnref<SkPicture> final(recorder.endRecording());
1299 REPORTER_ASSERT(reporter, final->willPlayBackBitmaps());
1300
1301 REPORTER_ASSERT(reporter, copy->uniqueID() != final->uniqueID());
1302
1303 // The snapshot shouldn't pick up any operations added after it was made
1304 REPORTER_ASSERT(reporter, !copy->willPlayBackBitmaps());
1305 }
robertphillips9058d602014-06-10 11:45:46 -07001306
1307 // Recreate the Android partialReplay test case
1308 {
1309 SkPictureRecorder recorder;
1310
1311 SkCanvas* canvas = recorder.beginRecording(4, 3, NULL, 0);
1312 create_imbalance(canvas);
1313
1314 int expectedSaveCount = canvas->getSaveCount();
1315
1316 SkAutoTUnref<SkPicture> copy(SkPictureRecorderReplayTester::Copy(&recorder));
1317 check_balance(reporter, copy);
1318
1319 REPORTER_ASSERT(reporter, expectedSaveCount = canvas->getSaveCount());
1320
1321 // End the recording of source to test the picture finalization
1322 // process isn't complicated by the partialReplay step
1323 SkAutoTUnref<SkPicture> final(recorder.endRecording());
1324 }
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001325}
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001326
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001327static void test_unbalanced_save_restores(skiatest::Reporter* reporter) {
1328 SkCanvas testCanvas(100, 100);
1329 set_canvas_to_save_count_4(&testCanvas);
1330
1331 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1332
1333 SkPaint paint;
1334 SkRect rect = SkRect::MakeLTRB(-10000000, -10000000, 10000000, 10000000);
1335
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001336 SkPictureRecorder recorder;
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001337
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001338 {
1339 // Create picture with 2 unbalanced saves
robertphillips9f1c2412014-06-09 06:25:34 -07001340 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001341 canvas->save();
1342 canvas->translate(10, 10);
1343 canvas->drawRect(rect, paint);
1344 canvas->save();
1345 canvas->translate(10, 10);
1346 canvas->drawRect(rect, paint);
1347 SkAutoTUnref<SkPicture> extraSavePicture(recorder.endRecording());
1348
robertphillips9b14f262014-06-04 05:40:44 -07001349 testCanvas.drawPicture(extraSavePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001350 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1351 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001352
1353 set_canvas_to_save_count_4(&testCanvas);
1354
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001355 {
1356 // Create picture with 2 unbalanced restores
robertphillips9f1c2412014-06-09 06:25:34 -07001357 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001358 canvas->save();
1359 canvas->translate(10, 10);
1360 canvas->drawRect(rect, paint);
1361 canvas->save();
1362 canvas->translate(10, 10);
1363 canvas->drawRect(rect, paint);
1364 canvas->restore();
1365 canvas->restore();
1366 canvas->restore();
1367 canvas->restore();
1368 SkAutoTUnref<SkPicture> extraRestorePicture(recorder.endRecording());
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001369
robertphillips9b14f262014-06-04 05:40:44 -07001370 testCanvas.drawPicture(extraRestorePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001371 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1372 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001373
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001374 set_canvas_to_save_count_4(&testCanvas);
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001375
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001376 {
robertphillips9f1c2412014-06-09 06:25:34 -07001377 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001378 canvas->translate(10, 10);
1379 canvas->drawRect(rect, paint);
1380 SkAutoTUnref<SkPicture> noSavePicture(recorder.endRecording());
1381
robertphillips9b14f262014-06-04 05:40:44 -07001382 testCanvas.drawPicture(noSavePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001383 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1384 REPORTER_ASSERT(reporter, testCanvas.getTotalMatrix().isIdentity());
1385 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001386}
1387
sugoi@google.com54f0d1b2013-02-27 19:17:41 +00001388static void test_peephole() {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00001389 SkRandom rand;
reed@google.com21b519d2012-10-02 17:42:15 +00001390
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001391 SkPictureRecorder recorder;
1392
reed@google.com21b519d2012-10-02 17:42:15 +00001393 for (int j = 0; j < 100; j++) {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00001394 SkRandom rand2(rand); // remember the seed
reed@google.com21b519d2012-10-02 17:42:15 +00001395
robertphillips9f1c2412014-06-09 06:25:34 -07001396 SkCanvas* canvas = recorder.beginRecording(100, 100);
reed@google.com21b519d2012-10-02 17:42:15 +00001397
1398 for (int i = 0; i < 1000; ++i) {
1399 rand_op(canvas, rand);
1400 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001401 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
jvanverth@google.comc490f802013-03-04 13:56:38 +00001402
1403 rand = rand2;
reed@google.com21b519d2012-10-02 17:42:15 +00001404 }
1405
1406 {
robertphillips9f1c2412014-06-09 06:25:34 -07001407 SkCanvas* canvas = recorder.beginRecording(100, 100);
reed@google.com21b519d2012-10-02 17:42:15 +00001408 SkRect rect = SkRect::MakeWH(50, 50);
skia.committer@gmail.com52c24372012-10-03 02:01:13 +00001409
reed@google.com21b519d2012-10-02 17:42:15 +00001410 for (int i = 0; i < 100; ++i) {
1411 canvas->save();
1412 }
1413 while (canvas->getSaveCount() > 1) {
1414 canvas->clipRect(rect);
1415 canvas->restore();
1416 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001417 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
reed@google.com21b519d2012-10-02 17:42:15 +00001418 }
1419}
1420
scroggo@google.com4b90b112012-12-04 15:08:56 +00001421#ifndef SK_DEBUG
1422// Only test this is in release mode. We deliberately crash in debug mode, since a valid caller
1423// should never do this.
1424static void test_bad_bitmap() {
1425 // This bitmap has a width and height but no pixels. As a result, attempting to record it will
1426 // fail.
1427 SkBitmap bm;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +00001428 bm.setInfo(SkImageInfo::MakeN32Premul(100, 100));
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001429 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001430 SkCanvas* recordingCanvas = recorder.beginRecording(100, 100);
scroggo@google.com4b90b112012-12-04 15:08:56 +00001431 recordingCanvas->drawBitmap(bm, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001432 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
scroggo@google.com4b90b112012-12-04 15:08:56 +00001433
1434 SkCanvas canvas;
robertphillips9b14f262014-06-04 05:40:44 -07001435 canvas.drawPicture(picture);
scroggo@google.com4b90b112012-12-04 15:08:56 +00001436}
1437#endif
1438
reed@google.com672588b2014-01-08 15:42:01 +00001439static SkData* encode_bitmap_to_data(size_t*, const SkBitmap& bm) {
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001440 return SkImageEncoder::EncodeData(bm, SkImageEncoder::kPNG_Type, 100);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001441}
1442
1443static SkData* serialized_picture_from_bitmap(const SkBitmap& bitmap) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001444 SkPictureRecorder recorder;
mtklein87c41382014-09-08 07:31:18 -07001445 SkCanvas* canvas = recorder.beginRecording(SkIntToScalar(bitmap.width()),
robertphillipsa8d7f0b2014-08-29 08:03:56 -07001446 SkIntToScalar(bitmap.height()));
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001447 canvas->drawBitmap(bitmap, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001448 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1449
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001450 SkDynamicMemoryWStream wStream;
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001451 picture->serialize(&wStream, &encode_bitmap_to_data);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001452 return wStream.copyToData();
1453}
1454
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001455struct ErrorContext {
1456 int fErrors;
1457 skiatest::Reporter* fReporter;
1458};
1459
1460static void assert_one_parse_error_cb(SkError error, void* context) {
1461 ErrorContext* errorContext = static_cast<ErrorContext*>(context);
1462 errorContext->fErrors++;
1463 // This test only expects one error, and that is a kParseError. If there are others,
1464 // there is some unknown problem.
1465 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->fErrors,
1466 "This threw more errors than expected.");
1467 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, kParseError_SkError == error,
1468 SkGetLastErrorString());
1469}
1470
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001471static void test_bitmap_with_encoded_data(skiatest::Reporter* reporter) {
1472 // Create a bitmap that will be encoded.
1473 SkBitmap original;
1474 make_bm(&original, 100, 100, SK_ColorBLUE, true);
1475 SkDynamicMemoryWStream wStream;
1476 if (!SkImageEncoder::EncodeStream(&wStream, original, SkImageEncoder::kPNG_Type, 100)) {
1477 return;
1478 }
1479 SkAutoDataUnref data(wStream.copyToData());
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001480
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001481 SkBitmap bm;
halcanary@google.com3d50ea12014-01-02 13:15:13 +00001482 bool installSuccess = SkInstallDiscardablePixelRef(
commit-bot@chromium.org2d970b52014-05-27 14:14:22 +00001483 SkDecodingImageGenerator::Create(data, SkDecodingImageGenerator::Options()), &bm);
reed@google.combf790232013-12-13 19:45:58 +00001484 REPORTER_ASSERT(reporter, installSuccess);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001485
1486 // Write both bitmaps to pictures, and ensure that the resulting data streams are the same.
1487 // Flattening original will follow the old path of performing an encode, while flattening bm
1488 // will use the already encoded data.
1489 SkAutoDataUnref picture1(serialized_picture_from_bitmap(original));
1490 SkAutoDataUnref picture2(serialized_picture_from_bitmap(bm));
1491 REPORTER_ASSERT(reporter, picture1->equals(picture2));
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001492 // Now test that a parse error was generated when trying to create a new SkPicture without
1493 // providing a function to decode the bitmap.
1494 ErrorContext context;
1495 context.fErrors = 0;
1496 context.fReporter = reporter;
1497 SkSetErrorCallback(assert_one_parse_error_cb, &context);
1498 SkMemoryStream pictureStream(picture1);
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001499 SkClearLastError();
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001500 SkAutoUnref pictureFromStream(SkPicture::CreateFromStream(&pictureStream, NULL));
1501 REPORTER_ASSERT(reporter, pictureFromStream.get() != NULL);
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001502 SkClearLastError();
1503 SkSetErrorCallback(NULL, NULL);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001504}
1505
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001506static void test_clip_bound_opt(skiatest::Reporter* reporter) {
1507 // Test for crbug.com/229011
1508 SkRect rect1 = SkRect::MakeXYWH(SkIntToScalar(4), SkIntToScalar(4),
1509 SkIntToScalar(2), SkIntToScalar(2));
1510 SkRect rect2 = SkRect::MakeXYWH(SkIntToScalar(7), SkIntToScalar(7),
1511 SkIntToScalar(1), SkIntToScalar(1));
1512 SkRect rect3 = SkRect::MakeXYWH(SkIntToScalar(6), SkIntToScalar(6),
1513 SkIntToScalar(1), SkIntToScalar(1));
1514
1515 SkPath invPath;
1516 invPath.addOval(rect1);
1517 invPath.setFillType(SkPath::kInverseEvenOdd_FillType);
1518 SkPath path;
1519 path.addOval(rect2);
1520 SkPath path2;
1521 path2.addOval(rect3);
1522 SkIRect clipBounds;
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001523 SkPictureRecorder recorder;
reedd9544982014-09-09 18:46:22 -07001524
1525 // Testing conservative-raster-clip that is enabled by PictureRecord
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001526 {
robertphillips9f1c2412014-06-09 06:25:34 -07001527 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001528 canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1529 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1530 REPORTER_ASSERT(reporter, true == nonEmpty);
1531 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1532 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1533 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1534 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1535 }
1536 {
robertphillips9f1c2412014-06-09 06:25:34 -07001537 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001538 canvas->clipPath(path, SkRegion::kIntersect_Op);
1539 canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1540 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1541 REPORTER_ASSERT(reporter, true == nonEmpty);
1542 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1543 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1544 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1545 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1546 }
1547 {
robertphillips9f1c2412014-06-09 06:25:34 -07001548 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001549 canvas->clipPath(path, SkRegion::kIntersect_Op);
1550 canvas->clipPath(invPath, SkRegion::kUnion_Op);
1551 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1552 REPORTER_ASSERT(reporter, true == nonEmpty);
1553 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1554 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1555 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1556 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1557 }
1558 {
robertphillips9f1c2412014-06-09 06:25:34 -07001559 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001560 canvas->clipPath(path, SkRegion::kDifference_Op);
1561 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1562 REPORTER_ASSERT(reporter, true == nonEmpty);
1563 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1564 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1565 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1566 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1567 }
1568 {
robertphillips9f1c2412014-06-09 06:25:34 -07001569 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001570 canvas->clipPath(path, SkRegion::kReverseDifference_Op);
1571 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1572 // True clip is actually empty in this case, but the best
1573 // determination we can make using only bounds as input is that the
1574 // clip is included in the bounds of 'path'.
1575 REPORTER_ASSERT(reporter, true == nonEmpty);
1576 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1577 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1578 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1579 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1580 }
1581 {
robertphillips9f1c2412014-06-09 06:25:34 -07001582 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001583 canvas->clipPath(path, SkRegion::kIntersect_Op);
1584 canvas->clipPath(path2, SkRegion::kXOR_Op);
1585 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1586 REPORTER_ASSERT(reporter, true == nonEmpty);
1587 REPORTER_ASSERT(reporter, 6 == clipBounds.fLeft);
1588 REPORTER_ASSERT(reporter, 6 == clipBounds.fTop);
1589 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1590 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1591 }
1592}
1593
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001594/**
1595 * A canvas that records the number of clip commands.
1596 */
1597class ClipCountingCanvas : public SkCanvas {
1598public:
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001599 ClipCountingCanvas(int width, int height)
commit-bot@chromium.orge2543102014-01-31 19:42:58 +00001600 : INHERITED(width, height)
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001601 , fClipCount(0){
1602 }
1603
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001604 virtual void onClipRect(const SkRect& r,
1605 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001606 ClipEdgeStyle edgeStyle) SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001607 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001608 this->INHERITED::onClipRect(r, op, edgeStyle);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001609 }
1610
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001611 virtual void onClipRRect(const SkRRect& rrect,
1612 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001613 ClipEdgeStyle edgeStyle)SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001614 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001615 this->INHERITED::onClipRRect(rrect, op, edgeStyle);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001616 }
1617
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001618 virtual void onClipPath(const SkPath& path,
1619 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001620 ClipEdgeStyle edgeStyle) SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001621 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001622 this->INHERITED::onClipPath(path, op, edgeStyle);
1623 }
1624
1625 virtual void onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) SK_OVERRIDE {
1626 fClipCount += 1;
1627 this->INHERITED::onClipRegion(deviceRgn, op);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001628 }
1629
1630 unsigned getClipCount() const { return fClipCount; }
1631
1632private:
1633 unsigned fClipCount;
1634
1635 typedef SkCanvas INHERITED;
1636};
1637
1638static void test_clip_expansion(skiatest::Reporter* reporter) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001639 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001640 SkCanvas* canvas = recorder.beginRecording(10, 10);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001641
1642 canvas->clipRect(SkRect::MakeEmpty(), SkRegion::kReplace_Op);
1643 // The following expanding clip should not be skipped.
1644 canvas->clipRect(SkRect::MakeXYWH(4, 4, 3, 3), SkRegion::kUnion_Op);
1645 // Draw something so the optimizer doesn't just fold the world.
1646 SkPaint p;
1647 p.setColor(SK_ColorBLUE);
1648 canvas->drawPaint(p);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001649 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001650
commit-bot@chromium.orge2543102014-01-31 19:42:58 +00001651 ClipCountingCanvas testCanvas(10, 10);
robertphillipsc5ba71d2014-09-04 08:42:50 -07001652 picture->playback(&testCanvas);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001653
1654 // Both clips should be present on playback.
1655 REPORTER_ASSERT(reporter, testCanvas.getClipCount() == 2);
1656}
1657
tomhudson@google.com381010e2013-10-24 11:12:47 +00001658static void test_hierarchical(skiatest::Reporter* reporter) {
1659 SkBitmap bm;
1660 make_bm(&bm, 10, 10, SK_ColorRED, true);
1661
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001662 SkPictureRecorder recorder;
tomhudson@google.com381010e2013-10-24 11:12:47 +00001663
robertphillips9f1c2412014-06-09 06:25:34 -07001664 recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001665 SkAutoTUnref<SkPicture> childPlain(recorder.endRecording());
1666 REPORTER_ASSERT(reporter, !childPlain->willPlayBackBitmaps()); // 0
tomhudson@google.com381010e2013-10-24 11:12:47 +00001667
robertphillips9f1c2412014-06-09 06:25:34 -07001668 recorder.beginRecording(10, 10)->drawBitmap(bm, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001669 SkAutoTUnref<SkPicture> childWithBitmap(recorder.endRecording());
1670 REPORTER_ASSERT(reporter, childWithBitmap->willPlayBackBitmaps()); // 1
tomhudson@google.com381010e2013-10-24 11:12:47 +00001671
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001672 {
robertphillips9f1c2412014-06-09 06:25:34 -07001673 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips9b14f262014-06-04 05:40:44 -07001674 canvas->drawPicture(childPlain);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001675 SkAutoTUnref<SkPicture> parentPP(recorder.endRecording());
1676 REPORTER_ASSERT(reporter, !parentPP->willPlayBackBitmaps()); // 0
1677 }
1678 {
robertphillips9f1c2412014-06-09 06:25:34 -07001679 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips9b14f262014-06-04 05:40:44 -07001680 canvas->drawPicture(childWithBitmap);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001681 SkAutoTUnref<SkPicture> parentPWB(recorder.endRecording());
1682 REPORTER_ASSERT(reporter, parentPWB->willPlayBackBitmaps()); // 1
1683 }
1684 {
robertphillips9f1c2412014-06-09 06:25:34 -07001685 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001686 canvas->drawBitmap(bm, 0, 0);
robertphillips9b14f262014-06-04 05:40:44 -07001687 canvas->drawPicture(childPlain);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001688 SkAutoTUnref<SkPicture> parentWBP(recorder.endRecording());
1689 REPORTER_ASSERT(reporter, parentWBP->willPlayBackBitmaps()); // 1
1690 }
1691 {
robertphillips9f1c2412014-06-09 06:25:34 -07001692 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001693 canvas->drawBitmap(bm, 0, 0);
robertphillips9b14f262014-06-04 05:40:44 -07001694 canvas->drawPicture(childWithBitmap);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001695 SkAutoTUnref<SkPicture> parentWBWB(recorder.endRecording());
1696 REPORTER_ASSERT(reporter, parentWBWB->willPlayBackBitmaps()); // 2
1697 }
tomhudson@google.com381010e2013-10-24 11:12:47 +00001698}
1699
robertphillips@google.comd5500882014-04-02 23:51:13 +00001700static void test_gen_id(skiatest::Reporter* reporter) {
1701
Robert Phillipscfaeec42014-07-13 12:00:50 -04001702 SkPictureRecorder recorder;
1703 recorder.beginRecording(0, 0);
1704 SkAutoTUnref<SkPicture> empty(recorder.endRecording());
robertphillips@google.comd5500882014-04-02 23:51:13 +00001705
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001706 // Empty pictures should still have a valid ID
Robert Phillipscfaeec42014-07-13 12:00:50 -04001707 REPORTER_ASSERT(reporter, empty->uniqueID() != SK_InvalidGenID);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001708
robertphillips9f1c2412014-06-09 06:25:34 -07001709 SkCanvas* canvas = recorder.beginRecording(1, 1);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001710 canvas->drawARGB(255, 255, 255, 255);
1711 SkAutoTUnref<SkPicture> hasData(recorder.endRecording());
1712 // picture should have a non-zero id after recording
1713 REPORTER_ASSERT(reporter, hasData->uniqueID() != SK_InvalidGenID);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001714
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001715 // both pictures should have different ids
Robert Phillipscfaeec42014-07-13 12:00:50 -04001716 REPORTER_ASSERT(reporter, hasData->uniqueID() != empty->uniqueID());
robertphillips@google.comd5500882014-04-02 23:51:13 +00001717}
1718
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00001719DEF_TEST(Picture, reporter) {
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001720#ifdef SK_DEBUG
robertphillipsdb539902014-07-01 08:47:04 -07001721 test_deleting_empty_picture();
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001722 test_serializing_empty_picture();
scroggo@google.com4b90b112012-12-04 15:08:56 +00001723#else
1724 test_bad_bitmap();
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001725#endif
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001726 test_unbalanced_save_restores(reporter);
sugoi@google.com54f0d1b2013-02-27 19:17:41 +00001727 test_peephole();
robertphillips@google.comb950c6f2014-04-25 00:02:12 +00001728#if SK_SUPPORT_GPU
mtklein8e126562014-10-01 09:29:35 -07001729 test_gpu_veto(reporter);
robertphillips@google.comb950c6f2014-04-25 00:02:12 +00001730#endif
mtklein8e126562014-10-01 09:29:35 -07001731 test_has_text(reporter);
1732 test_analysis(reporter);
reed@google.comfe7b1ed2012-11-29 21:00:39 +00001733 test_gatherpixelrefs(reporter);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +00001734 test_gatherpixelrefsandrects(reporter);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001735 test_bitmap_with_encoded_data(reporter);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001736 test_clip_bound_opt(reporter);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001737 test_clip_expansion(reporter);
tomhudson@google.com381010e2013-10-24 11:12:47 +00001738 test_hierarchical(reporter);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001739 test_gen_id(reporter);
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001740}
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001741
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001742#if SK_SUPPORT_GPU
1743DEF_GPUTEST(GPUPicture, reporter, factory) {
1744 test_gpu_picture_optimization(reporter, factory);
1745}
1746#endif
1747
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001748static void draw_bitmaps(const SkBitmap bitmap, SkCanvas* canvas) {
1749 const SkPaint paint;
1750 const SkRect rect = { 5.0f, 5.0f, 8.0f, 8.0f };
1751 const SkIRect irect = { 2, 2, 3, 3 };
1752
1753 // Don't care what these record, as long as they're legal.
1754 canvas->drawBitmap(bitmap, 0.0f, 0.0f, &paint);
1755 canvas->drawBitmapRectToRect(bitmap, &rect, rect, &paint, SkCanvas::kNone_DrawBitmapRectFlag);
1756 canvas->drawBitmapMatrix(bitmap, SkMatrix::I(), &paint);
1757 canvas->drawBitmapNine(bitmap, irect, rect, &paint);
1758 canvas->drawSprite(bitmap, 1, 1);
1759}
1760
1761static void test_draw_bitmaps(SkCanvas* canvas) {
1762 SkBitmap empty;
1763 draw_bitmaps(empty, canvas);
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +00001764 empty.setInfo(SkImageInfo::MakeN32Premul(10, 10));
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001765 draw_bitmaps(empty, canvas);
1766}
1767
1768DEF_TEST(Picture_EmptyBitmap, r) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001769 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001770 test_draw_bitmaps(recorder.beginRecording(10, 10));
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001771 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001772}
1773
1774DEF_TEST(Canvas_EmptyBitmap, r) {
1775 SkBitmap dst;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +00001776 dst.allocN32Pixels(10, 10);
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001777 SkCanvas canvas(dst);
1778
1779 test_draw_bitmaps(&canvas);
1780}
dneto3f22e8c2014-07-30 15:42:22 -07001781
1782DEF_TEST(DontOptimizeSaveLayerDrawDrawRestore, reporter) {
1783 // This test is from crbug.com/344987.
1784 // The commands are:
1785 // saveLayer with paint that modifies alpha
1786 // drawBitmapRectToRect
1787 // drawBitmapRectToRect
1788 // restore
1789 // The bug was that this structure was modified so that:
1790 // - The saveLayer and restore were eliminated
1791 // - The alpha was only applied to the first drawBitmapRectToRect
1792
1793 // This test draws blue and red squares inside a 50% transparent
1794 // layer. Both colours should show up muted.
1795 // When the bug is present, the red square (the second bitmap)
1796 // shows upwith full opacity.
1797
1798 SkBitmap blueBM;
1799 make_bm(&blueBM, 100, 100, SkColorSetARGB(255, 0, 0, 255), true);
1800 SkBitmap redBM;
1801 make_bm(&redBM, 100, 100, SkColorSetARGB(255, 255, 0, 0), true);
1802 SkPaint semiTransparent;
1803 semiTransparent.setAlpha(0x80);
1804
1805 SkPictureRecorder recorder;
1806 SkCanvas* canvas = recorder.beginRecording(100, 100);
1807 canvas->drawARGB(0, 0, 0, 0);
1808
1809 canvas->saveLayer(0, &semiTransparent);
1810 canvas->drawBitmap(blueBM, 25, 25);
1811 canvas->drawBitmap(redBM, 50, 50);
1812 canvas->restore();
1813
1814 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1815
1816 // Now replay the picture back on another canvas
1817 // and check a couple of its pixels.
1818 SkBitmap replayBM;
1819 make_bm(&replayBM, 100, 100, SK_ColorBLACK, false);
1820 SkCanvas replayCanvas(replayBM);
robertphillipsc5ba71d2014-09-04 08:42:50 -07001821 picture->playback(&replayCanvas);
dneto3f22e8c2014-07-30 15:42:22 -07001822 replayCanvas.flush();
1823
1824 // With the bug present, at (55, 55) we would get a fully opaque red
1825 // intead of a dark red.
1826 REPORTER_ASSERT(reporter, replayBM.getColor(30, 30) == 0xff000080);
1827 REPORTER_ASSERT(reporter, replayBM.getColor(55, 55) == 0xff800000);
1828}
mtklein3e8232b2014-08-18 13:39:11 -07001829
1830struct CountingBBH : public SkBBoxHierarchy {
1831 mutable int searchCalls;
1832
1833 CountingBBH() : searchCalls(0) {}
1834
mtklein6bd41962014-10-02 07:41:56 -07001835 virtual void search(const SkRect& query, SkTDArray<unsigned>* results) const SK_OVERRIDE {
mtklein3e8232b2014-08-18 13:39:11 -07001836 this->searchCalls++;
1837 }
1838
mtklein4477c3c2014-10-27 10:27:10 -07001839 virtual void insert(SkAutoTMalloc<SkRect>*, int) SK_OVERRIDE {}
mtklein3e8232b2014-08-18 13:39:11 -07001840};
1841
1842class SpoonFedBBHFactory : public SkBBHFactory {
1843public:
1844 explicit SpoonFedBBHFactory(SkBBoxHierarchy* bbh) : fBBH(bbh) {}
1845 virtual SkBBoxHierarchy* operator()(int width, int height) const {
1846 return SkRef(fBBH);
1847 }
1848private:
1849 SkBBoxHierarchy* fBBH;
1850};
1851
1852// When the canvas clip covers the full picture, we don't need to call the BBH.
1853DEF_TEST(Picture_SkipBBH, r) {
1854 CountingBBH bbh;
1855 SpoonFedBBHFactory factory(&bbh);
1856
1857 SkPictureRecorder recorder;
1858 recorder.beginRecording(320, 240, &factory);
1859 SkAutoTUnref<const SkPicture> picture(recorder.endRecording());
1860
1861 SkCanvas big(640, 480), small(300, 200);
1862
robertphillipsc5ba71d2014-09-04 08:42:50 -07001863 picture->playback(&big);
mtklein3e8232b2014-08-18 13:39:11 -07001864 REPORTER_ASSERT(r, bbh.searchCalls == 0);
1865
robertphillipsc5ba71d2014-09-04 08:42:50 -07001866 picture->playback(&small);
mtklein3e8232b2014-08-18 13:39:11 -07001867 REPORTER_ASSERT(r, bbh.searchCalls == 1);
1868}
mtkleind72094d2014-08-27 12:12:23 -07001869
1870DEF_TEST(Picture_BitmapLeak, r) {
1871 SkBitmap mut, immut;
1872 mut.allocN32Pixels(300, 200);
1873 immut.allocN32Pixels(300, 200);
1874 immut.setImmutable();
1875 SkASSERT(!mut.isImmutable());
1876 SkASSERT(immut.isImmutable());
1877
1878 // No one can hold a ref on our pixels yet.
1879 REPORTER_ASSERT(r, mut.pixelRef()->unique());
1880 REPORTER_ASSERT(r, immut.pixelRef()->unique());
1881
1882 SkPictureRecorder rec;
1883 SkCanvas* canvas = rec.beginRecording(1920, 1200);
1884 canvas->drawBitmap(mut, 0, 0);
1885 canvas->drawBitmap(immut, 800, 600);
1886 SkAutoTDelete<const SkPicture> pic(rec.endRecording());
1887
1888 // The picture shares the immutable pixels but copies the mutable ones.
1889 REPORTER_ASSERT(r, mut.pixelRef()->unique());
1890 REPORTER_ASSERT(r, !immut.pixelRef()->unique());
1891
1892 // When the picture goes away, it's just our bitmaps holding the refs.
1893 pic.reset(NULL);
1894 REPORTER_ASSERT(r, mut.pixelRef()->unique());
1895 REPORTER_ASSERT(r, immut.pixelRef()->unique());
1896}