blob: 618ccfc4c0ffc3b931a0e170099c2af76f8280fd [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
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00008#include "SkBitmapDevice.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"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000011#include "SkColorPriv.h"
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +000012#include "SkDashPathEffect.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000013#include "SkData.h"
reed@google.combf790232013-12-13 19:45:58 +000014#include "SkDecodingImageGenerator.h"
scroggo@google.com49ce11b2013-04-25 18:29:32 +000015#include "SkError.h"
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +000016#if SK_SUPPORT_GPU
17#include "SkGpuDevice.h"
18#endif
halcanary@google.com3d50ea12014-01-02 13:15:13 +000019#include "SkImageEncoder.h"
20#include "SkImageGenerator.h"
reed@google.com21b519d2012-10-02 17:42:15 +000021#include "SkPaint.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000022#include "SkPicture.h"
robertphillips@google.com770963f2014-04-18 18:04:41 +000023#include "SkPictureRecorder.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000024#include "SkPictureUtils.h"
reed@google.com72aa79c2013-01-24 18:27:42 +000025#include "SkRRect.h"
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000026#include "SkRandom.h"
reed@google.comfe7b1ed2012-11-29 21:00:39 +000027#include "SkShader.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000028#include "SkStream.h"
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +000029
30#if SK_SUPPORT_GPU
31#include "SkSurface.h"
32#include "GrContextFactory.h"
33#include "GrPictureUtils.h"
34#endif
tfarina@chromium.org8f6884a2014-01-24 20:56:26 +000035#include "Test.h"
scroggo@google.comd614c6a2012-09-14 17:26:37 +000036
reed@google.com47b679b2014-05-14 18:58:16 +000037#include "SkLumaColorFilter.h"
38#include "SkColorFilterImageFilter.h"
39
robertphillips@google.comed9866c2014-01-09 19:20:45 +000040static const int gColorScale = 30;
41static const int gColorOffset = 60;
reed@google.comfe7b1ed2012-11-29 21:00:39 +000042
43static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000044 bm->allocN32Pixels(w, h);
reed@google.comfe7b1ed2012-11-29 21:00:39 +000045 bm->eraseColor(color);
46 if (immutable) {
47 bm->setImmutable();
48 }
49}
50
robertphillips@google.comfe5824a2014-01-09 19:45:29 +000051static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000052 SkASSERT(w % 2 == 0);
53 SkASSERT(h % 2 == 0);
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +000054 bm->allocPixels(SkImageInfo::Make(w, h, kAlpha_8_SkColorType,
55 kPremul_SkAlphaType));
robertphillips@google.comed9866c2014-01-09 19:20:45 +000056 SkAutoLockPixels lock(*bm);
57 for (int y = 0; y < h; y += 2) {
58 uint8_t* s = bm->getAddr8(0, y);
59 for (int x = 0; x < w; x += 2) {
60 *s++ = 0xFF;
61 *s++ = 0x00;
62 }
63 s = bm->getAddr8(0, y + 1);
64 for (int x = 0; x < w; x += 2) {
65 *s++ = 0x00;
66 *s++ = 0xFF;
67 }
68 }
69 if (immutable) {
70 bm->setImmutable();
71 }
72}
reed@google.comfe7b1ed2012-11-29 21:00:39 +000073
robertphillips@google.comed9866c2014-01-09 19:20:45 +000074static void init_paint(SkPaint* paint, const SkBitmap &bm) {
75 SkShader* shader = SkShader::CreateBitmapShader(bm,
76 SkShader::kClamp_TileMode,
77 SkShader::kClamp_TileMode);
78 paint->setShader(shader)->unref();
79}
80
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +000081typedef void (*DrawBitmapProc)(SkCanvas*, const SkBitmap&,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000082 const SkBitmap&, const SkPoint&,
83 SkTDArray<SkPixelRef*>* usedPixRefs);
robertphillips@google.comed9866c2014-01-09 19:20:45 +000084
skia.committer@gmail.com856673a2014-01-10 07:08:11 +000085static void drawpaint_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000086 const SkBitmap& altBM, const SkPoint& pos,
87 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000088 SkPaint paint;
89 init_paint(&paint, bm);
90
91 canvas->drawPaint(paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000092 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +000093}
94
skia.committer@gmail.com856673a2014-01-10 07:08:11 +000095static void drawpoints_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +000096 const SkBitmap& altBM, const SkPoint& pos,
97 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +000098 SkPaint paint;
99 init_paint(&paint, bm);
100
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000101 // draw a rect
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000102 SkPoint points[5] = {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000103 { pos.fX, pos.fY },
104 { pos.fX + bm.width() - 1, pos.fY },
105 { pos.fX + bm.width() - 1, pos.fY + bm.height() - 1 },
106 { pos.fX, pos.fY + bm.height() - 1 },
107 { pos.fX, pos.fY },
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000108 };
109
110 canvas->drawPoints(SkCanvas::kPolygon_PointMode, 5, points, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000111 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000112}
113
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000114static void drawrect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000115 const SkBitmap& altBM, const SkPoint& pos,
116 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000117 SkPaint paint;
118 init_paint(&paint, bm);
119
120 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
121 r.offset(pos.fX, pos.fY);
122
123 canvas->drawRect(r, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000124 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000125}
126
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000127static void drawoval_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000128 const SkBitmap& altBM, const SkPoint& pos,
129 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000130 SkPaint paint;
131 init_paint(&paint, bm);
132
133 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
134 r.offset(pos.fX, pos.fY);
135
136 canvas->drawOval(r, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000137 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000138}
139
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000140static void drawrrect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000141 const SkBitmap& altBM, const SkPoint& pos,
142 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000143 SkPaint paint;
144 init_paint(&paint, bm);
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000145
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000146 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
147 r.offset(pos.fX, pos.fY);
148
149 SkRRect rr;
150 rr.setRectXY(r, SkIntToScalar(bm.width())/4, SkIntToScalar(bm.height())/4);
151 canvas->drawRRect(rr, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000152 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000153}
154
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000155static void drawpath_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000156 const SkBitmap& altBM, const SkPoint& pos,
157 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000158 SkPaint paint;
159 init_paint(&paint, bm);
160
161 SkPath path;
162 path.lineTo(bm.width()/2.0f, SkIntToScalar(bm.height()));
163 path.lineTo(SkIntToScalar(bm.width()), 0);
164 path.close();
165 path.offset(pos.fX, pos.fY);
166
167 canvas->drawPath(path, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000168 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000169}
170
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000171static void drawbitmap_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000172 const SkBitmap& altBM, const SkPoint& pos,
173 SkTDArray<SkPixelRef*>* usedPixRefs) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000174 canvas->drawBitmap(bm, pos.fX, pos.fY, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000175 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000176}
177
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000178static void drawbitmap_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000179 const SkBitmap& altBM, const SkPoint& pos,
180 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000181 SkPaint paint;
182 init_paint(&paint, bm);
183
184 // The bitmap in the paint is ignored unless we're drawing an A8 bitmap
185 canvas->drawBitmap(altBM, pos.fX, pos.fY, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000186 *usedPixRefs->append() = bm.pixelRef();
187 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000188}
189
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000190static void drawsprite_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000191 const SkBitmap& altBM, const SkPoint& pos,
192 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000193 const SkMatrix& ctm = canvas->getTotalMatrix();
194
195 SkPoint p(pos);
196 ctm.mapPoints(&p, 1);
197
198 canvas->drawSprite(bm, (int)p.fX, (int)p.fY, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000199 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000200}
201
202#if 0
203// Although specifiable, this case doesn't seem to make sense (i.e., the
204// bitmap in the shader is never used).
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000205static void drawsprite_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000206 const SkBitmap& altBM, const SkPoint& pos,
207 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000208 SkPaint paint;
209 init_paint(&paint, bm);
210
211 const SkMatrix& ctm = canvas->getTotalMatrix();
212
213 SkPoint p(pos);
214 ctm.mapPoints(&p, 1);
215
216 canvas->drawSprite(altBM, (int)p.fX, (int)p.fY, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000217 *usedPixRefs->append() = bm.pixelRef();
218 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000219}
220#endif
221
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000222static void drawbitmaprect_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000223 const SkBitmap& altBM, const SkPoint& pos,
224 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000225 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
226
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000227 r.offset(pos.fX, pos.fY);
228 canvas->drawBitmapRectToRect(bm, NULL, r, NULL);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000229 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000230}
231
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000232static void drawbitmaprect_withshader_proc(SkCanvas* canvas,
233 const SkBitmap& bm,
234 const SkBitmap& altBM,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000235 const SkPoint& pos,
236 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000237 SkPaint paint;
238 init_paint(&paint, bm);
239
240 SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000241 r.offset(pos.fX, pos.fY);
242
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000243 // The bitmap in the paint is ignored unless we're drawing an A8 bitmap
244 canvas->drawBitmapRectToRect(altBM, NULL, r, &paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000245 *usedPixRefs->append() = bm.pixelRef();
246 *usedPixRefs->append() = altBM.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000247}
248
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000249static void drawtext_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000250 const SkBitmap& altBM, const SkPoint& pos,
251 SkTDArray<SkPixelRef*>* usedPixRefs) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000252 SkPaint paint;
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000253 init_paint(&paint, bm);
254 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
255
256 canvas->drawText("0", 1, pos.fX, pos.fY+bm.width(), paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000257 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000258}
259
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000260static void drawpostext_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000261 const SkBitmap& altBM, const SkPoint& pos,
262 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000263 SkPaint paint;
264 init_paint(&paint, bm);
265 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
266
267 SkPoint point = { pos.fX, pos.fY + bm.height() };
268 canvas->drawPosText("O", 1, &point, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000269 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000270}
271
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000272static void drawtextonpath_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000273 const SkBitmap& altBM, const SkPoint& pos,
274 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000275 SkPaint paint;
276
277 init_paint(&paint, bm);
278 paint.setTextSize(SkIntToScalar(1.5*bm.width()));
279
280 SkPath path;
281 path.lineTo(SkIntToScalar(bm.width()), 0);
282 path.offset(pos.fX, pos.fY+bm.height());
283
284 canvas->drawTextOnPath("O", 1, path, NULL, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000285 *usedPixRefs->append() = bm.pixelRef();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000286}
287
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000288static void drawverts_proc(SkCanvas* canvas, const SkBitmap& bm,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000289 const SkBitmap& altBM, const SkPoint& pos,
290 SkTDArray<SkPixelRef*>* usedPixRefs) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000291 SkPaint paint;
292 init_paint(&paint, bm);
293
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000294 SkPoint verts[4] = {
295 { pos.fX, pos.fY },
296 { pos.fX + bm.width(), pos.fY },
297 { pos.fX + bm.width(), pos.fY + bm.height() },
298 { pos.fX, pos.fY + bm.height() }
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000299 };
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000300 SkPoint texs[4] = { { 0, 0 },
301 { SkIntToScalar(bm.width()), 0 },
302 { SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) },
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000303 { 0, SkIntToScalar(bm.height()) } };
304 uint16_t indices[6] = { 0, 1, 2, 0, 2, 3 };
305
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000306 canvas->drawVertices(SkCanvas::kTriangles_VertexMode, 4, verts, texs, NULL, NULL,
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000307 indices, 6, paint);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000308 *usedPixRefs->append() = bm.pixelRef();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000309}
310
311// Return a picture with the bitmaps drawn at the specified positions.
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000312static SkPicture* record_bitmaps(const SkBitmap bm[],
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000313 const SkPoint pos[],
314 SkTDArray<SkPixelRef*> analytic[],
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000315 int count,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000316 DrawBitmapProc proc) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000317 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -0700318 SkCanvas* canvas = recorder.beginRecording(1000, 1000);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000319 for (int i = 0; i < count; ++i) {
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000320 analytic[i].rewind();
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000321 canvas->save();
322 SkRect clipRect = SkRect::MakeXYWH(pos[i].fX, pos[i].fY,
323 SkIntToScalar(bm[i].width()),
324 SkIntToScalar(bm[i].height()));
325 canvas->clipRect(clipRect, SkRegion::kIntersect_Op);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000326 proc(canvas, bm[i], bm[count+i], pos[i], &analytic[i]);
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000327 canvas->restore();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000328 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000329 return recorder.endRecording();
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000330}
331
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000332static void rand_rect(SkRect* rect, SkRandom& rand, SkScalar W, SkScalar H) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000333 rect->fLeft = rand.nextRangeScalar(-W, 2*W);
334 rect->fTop = rand.nextRangeScalar(-H, 2*H);
335 rect->fRight = rect->fLeft + rand.nextRangeScalar(0, W);
336 rect->fBottom = rect->fTop + rand.nextRangeScalar(0, H);
337
338 // we integralize rect to make our tests more predictable, since Gather is
339 // a little sloppy.
340 SkIRect ir;
341 rect->round(&ir);
342 rect->set(ir);
343}
344
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000345static void draw(SkPicture* pic, int width, int height, SkBitmap* result) {
346 make_bm(result, width, height, SK_ColorBLACK, false);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000347
348 SkCanvas canvas(*result);
robertphillips9b14f262014-06-04 05:40:44 -0700349 canvas.drawPicture(pic);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000350}
351
352template <typename T> int find_index(const T* array, T elem, int count) {
353 for (int i = 0; i < count; ++i) {
354 if (array[i] == elem) {
355 return i;
356 }
357 }
358 return -1;
359}
360
361// Return true if 'ref' is found in array[]
362static bool find(SkPixelRef const * const * array, SkPixelRef const * ref, int count) {
363 return find_index<const SkPixelRef*>(array, ref, count) >= 0;
364}
365
skia.committer@gmail.com856673a2014-01-10 07:08:11 +0000366// Look at each pixel that is inside 'subset', and if its color appears in
367// colors[], find the corresponding value in refs[] and append that ref into
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000368// array, skipping duplicates of the same value.
369// Note that gathering pixelRefs from rendered colors suffers from the problem
370// that multiple simultaneous textures (e.g., A8 for alpha and 8888 for color)
371// isn't easy to reconstruct.
372static void gather_from_image(const SkBitmap& bm, SkPixelRef* const refs[],
373 int count, SkTDArray<SkPixelRef*>* array,
374 const SkRect& subset) {
375 SkIRect ir;
376 subset.roundOut(&ir);
377
378 if (!ir.intersect(0, 0, bm.width()-1, bm.height()-1)) {
379 return;
380 }
381
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000382 // Since we only want to return unique values in array, when we scan we just
383 // set a bit for each index'd color found. In practice we only have a few
384 // distinct colors, so we just use an int's bits as our array. Hence the
385 // assert that count <= number-of-bits-in-our-int.
386 SkASSERT((unsigned)count <= 32);
387 uint32_t bitarray = 0;
388
389 SkAutoLockPixels alp(bm);
390
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000391 for (int y = ir.fTop; y < ir.fBottom; ++y) {
392 for (int x = ir.fLeft; x < ir.fRight; ++x) {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000393 SkPMColor pmc = *bm.getAddr32(x, y);
394 // the only good case where the color is not found would be if
395 // the color is transparent, meaning no bitmap was drawn in that
396 // pixel.
397 if (pmc) {
bsalomon@google.comc3d753e2013-01-08 17:24:44 +0000398 uint32_t index = SkGetPackedR32(pmc);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000399 SkASSERT(SkGetPackedG32(pmc) == index);
400 SkASSERT(SkGetPackedB32(pmc) == index);
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000401 if (0 == index) {
402 continue; // background color
403 }
404 SkASSERT(0 == (index - gColorOffset) % gColorScale);
405 index = (index - gColorOffset) / gColorScale;
bsalomon@google.com5f429b02013-01-08 18:42:20 +0000406 SkASSERT(static_cast<int>(index) < count);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000407 bitarray |= 1 << index;
408 }
409 }
410 }
411
412 for (int i = 0; i < count; ++i) {
413 if (bitarray & (1 << i)) {
414 *array->append() = refs[i];
415 }
416 }
417}
418
robertphillips@google.com0e4ce142014-01-13 13:46:45 +0000419static void gather_from_analytic(const SkPoint pos[], SkScalar w, SkScalar h,
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000420 const SkTDArray<SkPixelRef*> analytic[],
421 int count,
422 SkTDArray<SkPixelRef*>* result,
robertphillips@google.com0e4ce142014-01-13 13:46:45 +0000423 const SkRect& subset) {
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000424 for (int i = 0; i < count; ++i) {
425 SkRect rect = SkRect::MakeXYWH(pos[i].fX, pos[i].fY, w, h);
426
427 if (SkRect::Intersects(subset, rect)) {
428 result->append(analytic[i].count(), analytic[i].begin());
429 }
430 }
431}
432
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000433
434static const struct {
435 const DrawBitmapProc proc;
436 const char* const desc;
437} gProcs[] = {
438 {drawpaint_proc, "drawpaint"},
439 {drawpoints_proc, "drawpoints"},
440 {drawrect_proc, "drawrect"},
441 {drawoval_proc, "drawoval"},
442 {drawrrect_proc, "drawrrect"},
443 {drawpath_proc, "drawpath"},
444 {drawbitmap_proc, "drawbitmap"},
445 {drawbitmap_withshader_proc, "drawbitmap_withshader"},
446 {drawsprite_proc, "drawsprite"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000447#if 0
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000448 {drawsprite_withshader_proc, "drawsprite_withshader"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000449#endif
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000450 {drawbitmaprect_proc, "drawbitmaprect"},
451 {drawbitmaprect_withshader_proc, "drawbitmaprect_withshader"},
452 {drawtext_proc, "drawtext"},
453 {drawpostext_proc, "drawpostext"},
454 {drawtextonpath_proc, "drawtextonpath"},
455 {drawverts_proc, "drawverts"},
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000456};
457
458static void create_textures(SkBitmap* bm, SkPixelRef** refs, int num, int w, int h) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000459 // Our convention is that the color components contain an encoding of
460 // the index of their corresponding bitmap/pixelref. (0,0,0,0) is
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000461 // reserved for the background
462 for (int i = 0; i < num; ++i) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000463 make_bm(&bm[i], w, h,
464 SkColorSetARGB(0xFF,
465 gColorScale*i+gColorOffset,
466 gColorScale*i+gColorOffset,
467 gColorScale*i+gColorOffset),
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000468 true);
469 refs[i] = bm[i].pixelRef();
470 }
471
472 // The A8 alternate bitmaps are all BW checkerboards
473 for (int i = 0; i < num; ++i) {
474 make_checkerboard(&bm[num+i], w, h, true);
475 refs[num+i] = bm[num+i].pixelRef();
476 }
477}
478
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000479static void test_gatherpixelrefs(skiatest::Reporter* reporter) {
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000480 const int IW = 32;
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000481 const int IH = IW;
482 const SkScalar W = SkIntToScalar(IW);
483 const SkScalar H = W;
484
485 static const int N = 4;
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000486 SkBitmap bm[2*N];
487 SkPixelRef* refs[2*N];
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000488 SkTDArray<SkPixelRef*> analytic[N];
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000489
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000490 const SkPoint pos[N] = {
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000491 { 0, 0 }, { W, 0 }, { 0, H }, { W, H }
492 };
493
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000494 create_textures(bm, refs, N, IW, IH);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000495
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000496 SkRandom rand;
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000497 for (size_t k = 0; k < SK_ARRAY_COUNT(gProcs); ++k) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000498 SkAutoTUnref<SkPicture> pic(
499 record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000500
tomhudson@google.com381010e2013-10-24 11:12:47 +0000501 REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000502 // quick check for a small piece of each quadrant, which should just
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000503 // contain 1 or 2 bitmaps.
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000504 for (size_t i = 0; i < SK_ARRAY_COUNT(pos); ++i) {
505 SkRect r;
506 r.set(2, 2, W - 2, H - 2);
507 r.offset(pos[i].fX, pos[i].fY);
508 SkAutoDataUnref data(SkPictureUtils::GatherPixelRefs(pic, r));
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000509 if (!data) {
510 ERRORF(reporter, "SkPictureUtils::GatherPixelRefs returned "
511 "NULL for %s.", gProcs[k].desc);
512 continue;
513 }
514 SkPixelRef** gatheredRefs = (SkPixelRef**)data->data();
515 int count = static_cast<int>(data->size() / sizeof(SkPixelRef*));
516 REPORTER_ASSERT(reporter, 1 == count || 2 == count);
517 if (1 == count) {
518 REPORTER_ASSERT(reporter, gatheredRefs[0] == refs[i]);
519 } else if (2 == count) {
520 REPORTER_ASSERT(reporter,
521 (gatheredRefs[0] == refs[i] && gatheredRefs[1] == refs[i+N]) ||
522 (gatheredRefs[1] == refs[i] && gatheredRefs[0] == refs[i+N]));
commit-bot@chromium.orgfe433c12013-07-09 16:04:32 +0000523 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000524 }
525
robertphillips@google.comed9866c2014-01-09 19:20:45 +0000526 SkBitmap image;
527 draw(pic, 2*IW, 2*IH, &image);
528
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000529 // Test a bunch of random (mostly) rects, and compare the gather results
530 // with a deduced list of refs by looking at the colors drawn.
531 for (int j = 0; j < 100; ++j) {
532 SkRect r;
533 rand_rect(&r, rand, 2*W, 2*H);
534
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000535 SkTDArray<SkPixelRef*> fromImage;
536 gather_from_image(image, refs, N, &fromImage, r);
537
538 SkTDArray<SkPixelRef*> fromAnalytic;
539 gather_from_analytic(pos, W, H, analytic, N, &fromAnalytic, r);
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000540
541 SkData* data = SkPictureUtils::GatherPixelRefs(pic, r);
542 size_t dataSize = data ? data->size() : 0;
robertphillips@google.come9cd27d2013-10-16 17:48:11 +0000543 int gatherCount = static_cast<int>(dataSize / sizeof(SkPixelRef*));
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000544 SkASSERT(gatherCount * sizeof(SkPixelRef*) == dataSize);
545 SkPixelRef** gatherRefs = data ? (SkPixelRef**)(data->data()) : NULL;
546 SkAutoDataUnref adu(data);
547
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000548 // Everything that we saw drawn should appear in the analytic list
549 // but the analytic list may contain some pixelRefs that were not
550 // seen in the image (e.g., A8 textures used as masks)
551 for (int i = 0; i < fromImage.count(); ++i) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000552 if (-1 == fromAnalytic.find(fromImage[i])) {
553 ERRORF(reporter, "PixelRef missing %d %s",
554 i, gProcs[k].desc);
555 }
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000556 }
skia.committer@gmail.comc3d7d902012-11-30 02:01:24 +0000557
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000558 /*
559 * GatherPixelRefs is conservative, so it can return more bitmaps
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000560 * than are strictly required. Thus our check here is only that
561 * Gather didn't miss any that we actually needed. Even that isn't
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000562 * a strict requirement on Gather, which is meant to be quick and
563 * only mostly-correct, but at the moment this test should work.
564 */
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000565 for (int i = 0; i < fromAnalytic.count(); ++i) {
566 bool found = find(gatherRefs, fromAnalytic[i], gatherCount);
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000567 if (!found) {
568 ERRORF(reporter, "PixelRef missing %d %s",
569 i, gProcs[k].desc);
570 }
reed@google.comfe7b1ed2012-11-29 21:00:39 +0000571#if 0
572 // enable this block of code to debug failures, as it will rerun
573 // the case that failed.
574 if (!found) {
575 SkData* data = SkPictureUtils::GatherPixelRefs(pic, r);
576 size_t dataSize = data ? data->size() : 0;
577 }
578#endif
579 }
580 }
581 }
582}
583
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000584static void test_gatherpixelrefsandrects(skiatest::Reporter* reporter) {
585 const int IW = 32;
586 const int IH = IW;
587 const SkScalar W = SkIntToScalar(IW);
588 const SkScalar H = W;
589
590 static const int N = 4;
591 SkBitmap bm[2*N];
592 SkPixelRef* refs[2*N];
593 SkTDArray<SkPixelRef*> analytic[N];
594
595 const SkPoint pos[N] = {
596 { 0, 0 }, { W, 0 }, { 0, H }, { W, H }
597 };
598
599 create_textures(bm, refs, N, IW, IH);
600
601 SkRandom rand;
602 for (size_t k = 0; k < SK_ARRAY_COUNT(gProcs); ++k) {
commit-bot@chromium.org5bee0542014-03-05 20:59:45 +0000603 SkAutoTUnref<SkPicture> pic(
604 record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000605
606 REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
607
608 SkAutoTUnref<SkPictureUtils::SkPixelRefContainer> prCont(
609 new SkPictureUtils::SkPixelRefsAndRectsList);
610
611 SkPictureUtils::GatherPixelRefsAndRects(pic, prCont);
612
613 // quick check for a small piece of each quadrant, which should just
614 // contain 1 or 2 bitmaps.
615 for (size_t i = 0; i < SK_ARRAY_COUNT(pos); ++i) {
616 SkRect r;
617 r.set(2, 2, W - 2, H - 2);
618 r.offset(pos[i].fX, pos[i].fY);
619
620 SkTDArray<SkPixelRef*> gatheredRefs;
621 prCont->query(r, &gatheredRefs);
622
623 int count = gatheredRefs.count();
624 REPORTER_ASSERT(reporter, 1 == count || 2 == count);
625 if (1 == count) {
626 REPORTER_ASSERT(reporter, gatheredRefs[0] == refs[i]);
627 } else if (2 == count) {
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000628 REPORTER_ASSERT(reporter,
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000629 (gatheredRefs[0] == refs[i] && gatheredRefs[1] == refs[i+N]) ||
630 (gatheredRefs[1] == refs[i] && gatheredRefs[0] == refs[i+N]));
631 }
632 }
633
634 SkBitmap image;
635 draw(pic, 2*IW, 2*IH, &image);
636
637 // Test a bunch of random (mostly) rects, and compare the gather results
638 // with the analytic results and the pixel refs seen in a rendering.
639 for (int j = 0; j < 100; ++j) {
640 SkRect r;
641 rand_rect(&r, rand, 2*W, 2*H);
642
643 SkTDArray<SkPixelRef*> fromImage;
644 gather_from_image(image, refs, N, &fromImage, r);
645
646 SkTDArray<SkPixelRef*> fromAnalytic;
647 gather_from_analytic(pos, W, H, analytic, N, &fromAnalytic, r);
648
649 SkTDArray<SkPixelRef*> gatheredRefs;
650 prCont->query(r, &gatheredRefs);
651
652 // Everything that we saw drawn should appear in the analytic list
653 // but the analytic list may contain some pixelRefs that were not
654 // seen in the image (e.g., A8 textures used as masks)
655 for (int i = 0; i < fromImage.count(); ++i) {
656 REPORTER_ASSERT(reporter, -1 != fromAnalytic.find(fromImage[i]));
657 }
658
659 // Everything in the analytic list should appear in the gathered
skia.committer@gmail.com2e9a7152014-01-14 07:01:42 +0000660 // list.
robertphillips@google.com56bf6e42014-01-13 13:33:26 +0000661 for (int i = 0; i < fromAnalytic.count(); ++i) {
662 REPORTER_ASSERT(reporter, -1 != gatheredRefs.find(fromAnalytic[i]));
663 }
664 }
665 }
666}
667
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000668#ifdef SK_DEBUG
669// Ensure that deleting SkPicturePlayback does not assert. Asserts only fire in debug mode, so only
670// run in debug mode.
671static void test_deleting_empty_playback() {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000672 SkPictureRecorder recorder;
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000673 // Creates an SkPictureRecord
robertphillips9f1c2412014-06-09 06:25:34 -0700674 recorder.beginRecording(0, 0);
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000675 // Turns that into an SkPicturePlayback
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000676 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000677 // Deletes the old SkPicturePlayback, and creates a new SkPictureRecord
robertphillips9f1c2412014-06-09 06:25:34 -0700678 recorder.beginRecording(0, 0);
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000679}
680
681// Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode.
682static void test_serializing_empty_picture() {
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000683 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -0700684 recorder.beginRecording(0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000685 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000686 SkDynamicMemoryWStream stream;
robertphillips@google.com84b18c72014-04-13 19:09:42 +0000687 picture->serialize(&stream);
scroggo@google.comd614c6a2012-09-14 17:26:37 +0000688}
689#endif
690
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +0000691static void rand_op(SkCanvas* canvas, SkRandom& rand) {
reed@google.com21b519d2012-10-02 17:42:15 +0000692 SkPaint paint;
693 SkRect rect = SkRect::MakeWH(50, 50);
694
695 SkScalar unit = rand.nextUScalar1();
696 if (unit <= 0.3) {
697// SkDebugf("save\n");
698 canvas->save();
699 } else if (unit <= 0.6) {
700// SkDebugf("restore\n");
701 canvas->restore();
702 } else if (unit <= 0.9) {
703// SkDebugf("clip\n");
704 canvas->clipRect(rect);
705 } else {
706// SkDebugf("draw\n");
707 canvas->drawPaint(paint);
708 }
709}
710
robertphillips@google.comb950c6f2014-04-25 00:02:12 +0000711#if SK_SUPPORT_GPU
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000712static void test_gpu_veto(skiatest::Reporter* reporter) {
713
714 SkPictureRecorder recorder;
715
robertphillips9f1c2412014-06-09 06:25:34 -0700716 SkCanvas* canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000717 {
718 SkPath path;
719 path.moveTo(0, 0);
720 path.lineTo(50, 50);
721
722 SkScalar intervals[] = { 1.0f, 1.0f };
723 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
724
725 SkPaint paint;
726 paint.setStyle(SkPaint::kStroke_Style);
727 paint.setPathEffect(dash);
728
729 canvas->drawPath(path, paint);
730 }
731 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
732 // path effects currently render an SkPicture undesireable for GPU rendering
commit-bot@chromium.orga1ff26a2014-05-30 21:52:52 +0000733
734 const char *reason = NULL;
735 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL, &reason));
736 REPORTER_ASSERT(reporter, NULL != reason);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000737
robertphillips9f1c2412014-06-09 06:25:34 -0700738 canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000739 {
740 SkPath path;
741
742 path.moveTo(0, 0);
743 path.lineTo(0, 50);
744 path.lineTo(25, 25);
745 path.lineTo(50, 50);
746 path.lineTo(50, 0);
747 path.close();
748 REPORTER_ASSERT(reporter, !path.isConvex());
749
750 SkPaint paint;
751 paint.setAntiAlias(true);
752 for (int i = 0; i < 50; ++i) {
753 canvas->drawPath(path, paint);
754 }
755 }
756 picture.reset(recorder.endRecording());
757 // A lot of AA concave paths currently render an SkPicture undesireable for GPU rendering
758 REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
759
robertphillips9f1c2412014-06-09 06:25:34 -0700760 canvas = recorder.beginRecording(100, 100);
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000761 {
762 SkPath path;
763
764 path.moveTo(0, 0);
765 path.lineTo(0, 50);
766 path.lineTo(25, 25);
767 path.lineTo(50, 50);
768 path.lineTo(50, 0);
769 path.close();
770 REPORTER_ASSERT(reporter, !path.isConvex());
771
772 SkPaint paint;
773 paint.setAntiAlias(true);
774 paint.setStyle(SkPaint::kStroke_Style);
775 paint.setStrokeWidth(0);
776 for (int i = 0; i < 50; ++i) {
777 canvas->drawPath(path, paint);
778 }
779 }
780 picture.reset(recorder.endRecording());
781 // hairline stroked AA concave paths are fine for GPU rendering
782 REPORTER_ASSERT(reporter, picture->suitableForGpuRasterization(NULL));
783}
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000784
785static void test_gpu_picture_optimization(skiatest::Reporter* reporter,
786 GrContextFactory* factory) {
787
788 GrContext* context = factory->get(GrContextFactory::kNative_GLContextType);
789
790 static const int kWidth = 100;
791 static const int kHeight = 100;
792
793 SkAutoTUnref<SkPicture> pict;
794
795 // create a picture with the structure:
796 // 1)
797 // SaveLayer
798 // Restore
799 // 2)
800 // SaveLayer
skia.committer@gmail.coma5b068c2014-05-07 03:04:15 +0000801 // Translate
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000802 // SaveLayer w/ bound
803 // Restore
804 // Restore
805 // 3)
806 // SaveLayer w/ copyable paint
807 // Restore
808 // 4)
809 // SaveLayer w/ non-copyable paint
810 // Restore
811 {
812 SkPictureRecorder recorder;
813
robertphillips9f1c2412014-06-09 06:25:34 -0700814 SkCanvas* c = recorder.beginRecording(kWidth, kHeight);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000815 // 1)
816 c->saveLayer(NULL, NULL);
817 c->restore();
818
819 // 2)
820 c->saveLayer(NULL, NULL);
821 c->translate(kWidth/2, kHeight/2);
822 SkRect r = SkRect::MakeXYWH(0, 0, kWidth/2, kHeight/2);
823 c->saveLayer(&r, NULL);
824 c->restore();
825 c->restore();
826
827 // 3)
828 {
829 SkPaint p;
830 p.setColor(SK_ColorRED);
831 c->saveLayer(NULL, &p);
832 c->restore();
833 }
834 // 4)
835 // TODO: this case will need to be removed once the paint's are immutable
836 {
837 SkPaint p;
reed@google.com47b679b2014-05-14 18:58:16 +0000838 SkAutoTUnref<SkColorFilter> cf(SkLumaColorFilter::Create());
839 p.setImageFilter(SkColorFilterImageFilter::Create(cf.get()))->unref();
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000840 c->saveLayer(NULL, &p);
841 c->restore();
842 }
843
844 pict.reset(recorder.endRecording());
845 }
846
847 // Now test out the SaveLayer extraction
848 {
849 SkImageInfo info = SkImageInfo::MakeN32Premul(kWidth, kHeight);
850
851 SkAutoTUnref<SkSurface> surface(SkSurface::NewScratchRenderTarget(context, info));
852
skia.committer@gmail.coma5b068c2014-05-07 03:04:15 +0000853 SkCanvas* canvas = surface->getCanvas();
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000854
855 canvas->EXPERIMENTAL_optimize(pict);
856
857 SkPicture::AccelData::Key key = GPUAccelData::ComputeAccelDataKey();
858
859 const SkPicture::AccelData* data = pict->EXPERIMENTAL_getAccelData(key);
860 REPORTER_ASSERT(reporter, NULL != data);
861
862 const GPUAccelData *gpuData = static_cast<const GPUAccelData*>(data);
863 REPORTER_ASSERT(reporter, 5 == gpuData->numSaveLayers());
864
865 const GPUAccelData::SaveLayerInfo& info0 = gpuData->saveLayerInfo(0);
866 // The parent/child layer appear in reverse order
867 const GPUAccelData::SaveLayerInfo& info1 = gpuData->saveLayerInfo(2);
868 const GPUAccelData::SaveLayerInfo& info2 = gpuData->saveLayerInfo(1);
869 const GPUAccelData::SaveLayerInfo& info3 = gpuData->saveLayerInfo(3);
reed@google.com47b679b2014-05-14 18:58:16 +0000870// const GPUAccelData::SaveLayerInfo& info4 = gpuData->saveLayerInfo(4);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000871
872 REPORTER_ASSERT(reporter, info0.fValid);
873 REPORTER_ASSERT(reporter, kWidth == info0.fSize.fWidth && kHeight == info0.fSize.fHeight);
874 REPORTER_ASSERT(reporter, info0.fCTM.isIdentity());
875 REPORTER_ASSERT(reporter, 0 == info0.fOffset.fX && 0 == info0.fOffset.fY);
876 REPORTER_ASSERT(reporter, NULL != info0.fPaint);
877 REPORTER_ASSERT(reporter, !info0.fIsNested && !info0.fHasNestedLayers);
878
879 REPORTER_ASSERT(reporter, info1.fValid);
880 REPORTER_ASSERT(reporter, kWidth == info1.fSize.fWidth && kHeight == info1.fSize.fHeight);
881 REPORTER_ASSERT(reporter, info1.fCTM.isIdentity());
882 REPORTER_ASSERT(reporter, 0 == info1.fOffset.fX && 0 == info1.fOffset.fY);
883 REPORTER_ASSERT(reporter, NULL != info1.fPaint);
884 REPORTER_ASSERT(reporter, !info1.fIsNested && info1.fHasNestedLayers); // has a nested SL
885
886 REPORTER_ASSERT(reporter, info2.fValid);
skia.committer@gmail.coma5b068c2014-05-07 03:04:15 +0000887 REPORTER_ASSERT(reporter, kWidth/2 == info2.fSize.fWidth &&
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000888 kHeight/2 == info2.fSize.fHeight); // bound reduces size
889 REPORTER_ASSERT(reporter, info2.fCTM.isIdentity()); // translated
skia.committer@gmail.com8a1e6882014-05-09 03:05:30 +0000890 REPORTER_ASSERT(reporter, kWidth/2 == info2.fOffset.fX &&
commit-bot@chromium.orgf97d65d2014-05-08 23:24:05 +0000891 kHeight/2 == info2.fOffset.fY);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000892 REPORTER_ASSERT(reporter, NULL != info1.fPaint);
893 REPORTER_ASSERT(reporter, info2.fIsNested && !info2.fHasNestedLayers); // is nested
894
895 REPORTER_ASSERT(reporter, info3.fValid);
896 REPORTER_ASSERT(reporter, kWidth == info3.fSize.fWidth && kHeight == info3.fSize.fHeight);
897 REPORTER_ASSERT(reporter, info3.fCTM.isIdentity());
898 REPORTER_ASSERT(reporter, 0 == info3.fOffset.fX && 0 == info3.fOffset.fY);
899 REPORTER_ASSERT(reporter, NULL != info3.fPaint);
900 REPORTER_ASSERT(reporter, !info3.fIsNested && !info3.fHasNestedLayers);
901
reed@google.com47b679b2014-05-14 18:58:16 +0000902#if 0 // needs more though for GrGatherCanvas
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000903 REPORTER_ASSERT(reporter, !info4.fValid); // paint is/was uncopyable
skia.committer@gmail.coma5b068c2014-05-07 03:04:15 +0000904 REPORTER_ASSERT(reporter, kWidth == info4.fSize.fWidth && kHeight == info4.fSize.fHeight);
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000905 REPORTER_ASSERT(reporter, 0 == info4.fOffset.fX && 0 == info4.fOffset.fY);
906 REPORTER_ASSERT(reporter, info4.fCTM.isIdentity());
907 REPORTER_ASSERT(reporter, NULL == info4.fPaint); // paint is/was uncopyable
908 REPORTER_ASSERT(reporter, !info4.fIsNested && !info4.fHasNestedLayers);
reed@google.com47b679b2014-05-14 18:58:16 +0000909#endif
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +0000910 }
911}
912
robertphillips@google.comb950c6f2014-04-25 00:02:12 +0000913#endif
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +0000914
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +0000915static void set_canvas_to_save_count_4(SkCanvas* canvas) {
916 canvas->restoreToCount(1);
917 canvas->save();
918 canvas->save();
919 canvas->save();
920}
921
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +0000922/**
923 * A canvas that records the number of saves, saveLayers and restores.
924 */
925class SaveCountingCanvas : public SkCanvas {
926public:
927 SaveCountingCanvas(int width, int height)
928 : INHERITED(width, height)
929 , fSaveCount(0)
930 , fSaveLayerCount(0)
931 , fRestoreCount(0){
932 }
933
934 virtual SaveLayerStrategy willSaveLayer(const SkRect* bounds, const SkPaint* paint,
935 SaveFlags flags) SK_OVERRIDE {
936 ++fSaveLayerCount;
937 return this->INHERITED::willSaveLayer(bounds, paint, flags);
938 }
939
940 virtual void willSave(SaveFlags flags) SK_OVERRIDE {
941 ++fSaveCount;
942 this->INHERITED::willSave(flags);
943 }
944
945 virtual void willRestore() SK_OVERRIDE {
946 ++fRestoreCount;
947 this->INHERITED::willRestore();
948 }
949
950 unsigned int getSaveCount() const { return fSaveCount; }
951 unsigned int getSaveLayerCount() const { return fSaveLayerCount; }
952 unsigned int getRestoreCount() const { return fRestoreCount; }
953
954private:
955 unsigned int fSaveCount;
956 unsigned int fSaveLayerCount;
957 unsigned int fRestoreCount;
958
959 typedef SkCanvas INHERITED;
960};
961
skia.committer@gmail.com8e7d37d2014-05-28 03:06:06 +0000962void check_save_state(skiatest::Reporter* reporter, SkPicture* picture,
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +0000963 unsigned int numSaves, unsigned int numSaveLayers,
964 unsigned int numRestores) {
965 SaveCountingCanvas canvas(picture->width(), picture->height());
966
967 picture->draw(&canvas);
968
969 REPORTER_ASSERT(reporter, numSaves == canvas.getSaveCount());
970 REPORTER_ASSERT(reporter, numSaveLayers == canvas.getSaveLayerCount());
971 REPORTER_ASSERT(reporter, numRestores == canvas.getRestoreCount());
972}
973
974// This class exists so SkPicture can friend it and give it access to
975// the 'partialReplay' method.
976class SkPictureRecorderReplayTester {
977public:
978 static SkPicture* Copy(SkPictureRecorder* recorder) {
979 SkPictureRecorder recorder2;
980
robertphillips9f1c2412014-06-09 06:25:34 -0700981 SkCanvas* canvas = recorder2.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +0000982
983 recorder->partialReplay(canvas);
984
985 return recorder2.endRecording();
986 }
987};
988
989// Test out SkPictureRecorder::partialReplay
990DEF_TEST(PictureRecorder_replay, reporter) {
991 // check save/saveLayer state
992 {
993 SkPictureRecorder recorder;
994
robertphillips9f1c2412014-06-09 06:25:34 -0700995 SkCanvas* canvas = recorder.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +0000996
997 canvas->saveLayer(NULL, NULL);
998
999 SkAutoTUnref<SkPicture> copy(SkPictureRecorderReplayTester::Copy(&recorder));
1000
1001 // The extra save and restore comes from the Copy process.
1002 check_save_state(reporter, copy, 2, 1, 3);
1003
1004 canvas->saveLayer(NULL, NULL);
1005
1006 SkAutoTUnref<SkPicture> final(recorder.endRecording());
1007
1008 check_save_state(reporter, final, 1, 2, 3);
1009
1010 // The copy shouldn't pick up any operations added after it was made
1011 check_save_state(reporter, copy, 2, 1, 3);
1012 }
1013
1014 // (partially) check leakage of draw ops
1015 {
1016 SkPictureRecorder recorder;
1017
robertphillips9f1c2412014-06-09 06:25:34 -07001018 SkCanvas* canvas = recorder.beginRecording(10, 10);
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001019
1020 SkRect r = SkRect::MakeWH(5, 5);
1021 SkPaint p;
1022
1023 canvas->drawRect(r, p);
1024
1025 SkAutoTUnref<SkPicture> copy(SkPictureRecorderReplayTester::Copy(&recorder));
1026
1027 REPORTER_ASSERT(reporter, !copy->willPlayBackBitmaps());
1028
1029 SkBitmap bm;
1030 make_bm(&bm, 10, 10, SK_ColorRED, true);
1031
1032 r.offset(5.0f, 5.0f);
1033 canvas->drawBitmapRectToRect(bm, NULL, r);
1034
1035 SkAutoTUnref<SkPicture> final(recorder.endRecording());
1036 REPORTER_ASSERT(reporter, final->willPlayBackBitmaps());
1037
1038 REPORTER_ASSERT(reporter, copy->uniqueID() != final->uniqueID());
1039
1040 // The snapshot shouldn't pick up any operations added after it was made
1041 REPORTER_ASSERT(reporter, !copy->willPlayBackBitmaps());
1042 }
1043}
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001044
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001045static void test_unbalanced_save_restores(skiatest::Reporter* reporter) {
1046 SkCanvas testCanvas(100, 100);
1047 set_canvas_to_save_count_4(&testCanvas);
1048
1049 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1050
1051 SkPaint paint;
1052 SkRect rect = SkRect::MakeLTRB(-10000000, -10000000, 10000000, 10000000);
1053
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001054 SkPictureRecorder recorder;
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001055
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001056 {
1057 // Create picture with 2 unbalanced saves
robertphillips9f1c2412014-06-09 06:25:34 -07001058 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001059 canvas->save();
1060 canvas->translate(10, 10);
1061 canvas->drawRect(rect, paint);
1062 canvas->save();
1063 canvas->translate(10, 10);
1064 canvas->drawRect(rect, paint);
1065 SkAutoTUnref<SkPicture> extraSavePicture(recorder.endRecording());
1066
robertphillips9b14f262014-06-04 05:40:44 -07001067 testCanvas.drawPicture(extraSavePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001068 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1069 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001070
1071 set_canvas_to_save_count_4(&testCanvas);
1072
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001073 {
1074 // Create picture with 2 unbalanced restores
robertphillips9f1c2412014-06-09 06:25:34 -07001075 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001076 canvas->save();
1077 canvas->translate(10, 10);
1078 canvas->drawRect(rect, paint);
1079 canvas->save();
1080 canvas->translate(10, 10);
1081 canvas->drawRect(rect, paint);
1082 canvas->restore();
1083 canvas->restore();
1084 canvas->restore();
1085 canvas->restore();
1086 SkAutoTUnref<SkPicture> extraRestorePicture(recorder.endRecording());
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001087
robertphillips9b14f262014-06-04 05:40:44 -07001088 testCanvas.drawPicture(extraRestorePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001089 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1090 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001091
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001092 set_canvas_to_save_count_4(&testCanvas);
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001093
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001094 {
robertphillips9f1c2412014-06-09 06:25:34 -07001095 SkCanvas* canvas = recorder.beginRecording(100, 100);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001096 canvas->translate(10, 10);
1097 canvas->drawRect(rect, paint);
1098 SkAutoTUnref<SkPicture> noSavePicture(recorder.endRecording());
1099
robertphillips9b14f262014-06-04 05:40:44 -07001100 testCanvas.drawPicture(noSavePicture);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001101 REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1102 REPORTER_ASSERT(reporter, testCanvas.getTotalMatrix().isIdentity());
1103 }
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001104}
1105
sugoi@google.com54f0d1b2013-02-27 19:17:41 +00001106static void test_peephole() {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00001107 SkRandom rand;
reed@google.com21b519d2012-10-02 17:42:15 +00001108
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001109 SkPictureRecorder recorder;
1110
reed@google.com21b519d2012-10-02 17:42:15 +00001111 for (int j = 0; j < 100; j++) {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00001112 SkRandom rand2(rand); // remember the seed
reed@google.com21b519d2012-10-02 17:42:15 +00001113
robertphillips9f1c2412014-06-09 06:25:34 -07001114 SkCanvas* canvas = recorder.beginRecording(100, 100);
reed@google.com21b519d2012-10-02 17:42:15 +00001115
1116 for (int i = 0; i < 1000; ++i) {
1117 rand_op(canvas, rand);
1118 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001119 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
jvanverth@google.comc490f802013-03-04 13:56:38 +00001120
1121 rand = rand2;
reed@google.com21b519d2012-10-02 17:42:15 +00001122 }
1123
1124 {
robertphillips9f1c2412014-06-09 06:25:34 -07001125 SkCanvas* canvas = recorder.beginRecording(100, 100);
reed@google.com21b519d2012-10-02 17:42:15 +00001126 SkRect rect = SkRect::MakeWH(50, 50);
skia.committer@gmail.com52c24372012-10-03 02:01:13 +00001127
reed@google.com21b519d2012-10-02 17:42:15 +00001128 for (int i = 0; i < 100; ++i) {
1129 canvas->save();
1130 }
1131 while (canvas->getSaveCount() > 1) {
1132 canvas->clipRect(rect);
1133 canvas->restore();
1134 }
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001135 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
reed@google.com21b519d2012-10-02 17:42:15 +00001136 }
1137}
1138
scroggo@google.com4b90b112012-12-04 15:08:56 +00001139#ifndef SK_DEBUG
1140// Only test this is in release mode. We deliberately crash in debug mode, since a valid caller
1141// should never do this.
1142static void test_bad_bitmap() {
1143 // This bitmap has a width and height but no pixels. As a result, attempting to record it will
1144 // fail.
1145 SkBitmap bm;
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +00001146 bm.setInfo(SkImageInfo::MakeN32Premul(100, 100));
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001147 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001148 SkCanvas* recordingCanvas = recorder.beginRecording(100, 100);
scroggo@google.com4b90b112012-12-04 15:08:56 +00001149 recordingCanvas->drawBitmap(bm, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001150 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
scroggo@google.com4b90b112012-12-04 15:08:56 +00001151
1152 SkCanvas canvas;
robertphillips9b14f262014-06-04 05:40:44 -07001153 canvas.drawPicture(picture);
scroggo@google.com4b90b112012-12-04 15:08:56 +00001154}
1155#endif
1156
reed@google.com672588b2014-01-08 15:42:01 +00001157static SkData* encode_bitmap_to_data(size_t*, const SkBitmap& bm) {
scroggo@google.com1b1bcc32013-05-21 20:31:23 +00001158 return SkImageEncoder::EncodeData(bm, SkImageEncoder::kPNG_Type, 100);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001159}
1160
1161static SkData* serialized_picture_from_bitmap(const SkBitmap& bitmap) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001162 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001163 SkCanvas* canvas = recorder.beginRecording(bitmap.width(), bitmap.height());
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001164 canvas->drawBitmap(bitmap, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001165 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1166
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001167 SkDynamicMemoryWStream wStream;
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001168 picture->serialize(&wStream, &encode_bitmap_to_data);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001169 return wStream.copyToData();
1170}
1171
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001172struct ErrorContext {
1173 int fErrors;
1174 skiatest::Reporter* fReporter;
1175};
1176
1177static void assert_one_parse_error_cb(SkError error, void* context) {
1178 ErrorContext* errorContext = static_cast<ErrorContext*>(context);
1179 errorContext->fErrors++;
1180 // This test only expects one error, and that is a kParseError. If there are others,
1181 // there is some unknown problem.
1182 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->fErrors,
1183 "This threw more errors than expected.");
1184 REPORTER_ASSERT_MESSAGE(errorContext->fReporter, kParseError_SkError == error,
1185 SkGetLastErrorString());
1186}
1187
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001188static void test_bitmap_with_encoded_data(skiatest::Reporter* reporter) {
1189 // Create a bitmap that will be encoded.
1190 SkBitmap original;
1191 make_bm(&original, 100, 100, SK_ColorBLUE, true);
1192 SkDynamicMemoryWStream wStream;
1193 if (!SkImageEncoder::EncodeStream(&wStream, original, SkImageEncoder::kPNG_Type, 100)) {
1194 return;
1195 }
1196 SkAutoDataUnref data(wStream.copyToData());
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001197
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001198 SkBitmap bm;
halcanary@google.com3d50ea12014-01-02 13:15:13 +00001199 bool installSuccess = SkInstallDiscardablePixelRef(
commit-bot@chromium.org2d970b52014-05-27 14:14:22 +00001200 SkDecodingImageGenerator::Create(data, SkDecodingImageGenerator::Options()), &bm);
reed@google.combf790232013-12-13 19:45:58 +00001201 REPORTER_ASSERT(reporter, installSuccess);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001202
1203 // Write both bitmaps to pictures, and ensure that the resulting data streams are the same.
1204 // Flattening original will follow the old path of performing an encode, while flattening bm
1205 // will use the already encoded data.
1206 SkAutoDataUnref picture1(serialized_picture_from_bitmap(original));
1207 SkAutoDataUnref picture2(serialized_picture_from_bitmap(bm));
1208 REPORTER_ASSERT(reporter, picture1->equals(picture2));
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001209 // Now test that a parse error was generated when trying to create a new SkPicture without
1210 // providing a function to decode the bitmap.
1211 ErrorContext context;
1212 context.fErrors = 0;
1213 context.fReporter = reporter;
1214 SkSetErrorCallback(assert_one_parse_error_cb, &context);
1215 SkMemoryStream pictureStream(picture1);
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001216 SkClearLastError();
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001217 SkAutoUnref pictureFromStream(SkPicture::CreateFromStream(&pictureStream, NULL));
1218 REPORTER_ASSERT(reporter, pictureFromStream.get() != NULL);
scroggo@google.com49ce11b2013-04-25 18:29:32 +00001219 SkClearLastError();
1220 SkSetErrorCallback(NULL, NULL);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001221}
1222
junov@chromium.org94f20dc2013-01-28 21:04:44 +00001223static void test_clone_empty(skiatest::Reporter* reporter) {
1224 // This is a regression test for crbug.com/172062
1225 // Before the fix, we used to crash accessing a null pointer when we
1226 // had a picture with no paints. This test passes by not crashing.
1227 {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001228 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001229 recorder.beginRecording(1, 1);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001230 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1231 SkAutoTUnref<SkPicture> destPicture(picture->clone());
junov@chromium.org94f20dc2013-01-28 21:04:44 +00001232 REPORTER_ASSERT(reporter, NULL != destPicture);
junov@chromium.org94f20dc2013-01-28 21:04:44 +00001233 }
1234}
1235
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001236static void test_draw_empty(skiatest::Reporter* reporter) {
1237 SkBitmap result;
1238 make_bm(&result, 2, 2, SK_ColorBLACK, false);
1239
1240 SkCanvas canvas(result);
1241
1242 {
1243 // stock SkPicture
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001244 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001245 recorder.beginRecording(1, 1);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001246 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001247
robertphillips9b14f262014-06-04 05:40:44 -07001248 canvas.drawPicture(picture);
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001249 }
1250
1251 {
1252 // tile grid
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +00001253 SkTileGridFactory::TileGridInfo gridInfo;
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001254 gridInfo.fMargin.setEmpty();
1255 gridInfo.fOffset.setZero();
1256 gridInfo.fTileInterval.set(1, 1);
1257
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +00001258 SkTileGridFactory factory(gridInfo);
1259 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001260 recorder.beginRecording(1, 1, &factory);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001261 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001262
robertphillips9b14f262014-06-04 05:40:44 -07001263 canvas.drawPicture(picture);
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001264 }
1265
1266 {
1267 // RTree
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +00001268 SkRTreeFactory factory;
1269 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001270 recorder.beginRecording(1, 1, &factory);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001271 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001272
robertphillips9b14f262014-06-04 05:40:44 -07001273 canvas.drawPicture(picture);
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001274 }
1275
1276 {
1277 // quad tree
commit-bot@chromium.org5fb2ce32014-04-17 23:35:06 +00001278 SkQuadTreeFactory factory;
1279 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001280 recorder.beginRecording(1, 1, &factory);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001281 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001282
robertphillips9b14f262014-06-04 05:40:44 -07001283 canvas.drawPicture(picture);
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001284 }
1285}
1286
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001287static void test_clip_bound_opt(skiatest::Reporter* reporter) {
1288 // Test for crbug.com/229011
1289 SkRect rect1 = SkRect::MakeXYWH(SkIntToScalar(4), SkIntToScalar(4),
1290 SkIntToScalar(2), SkIntToScalar(2));
1291 SkRect rect2 = SkRect::MakeXYWH(SkIntToScalar(7), SkIntToScalar(7),
1292 SkIntToScalar(1), SkIntToScalar(1));
1293 SkRect rect3 = SkRect::MakeXYWH(SkIntToScalar(6), SkIntToScalar(6),
1294 SkIntToScalar(1), SkIntToScalar(1));
1295
1296 SkPath invPath;
1297 invPath.addOval(rect1);
1298 invPath.setFillType(SkPath::kInverseEvenOdd_FillType);
1299 SkPath path;
1300 path.addOval(rect2);
1301 SkPath path2;
1302 path2.addOval(rect3);
1303 SkIRect clipBounds;
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001304 SkPictureRecorder recorder;
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001305 // Minimalist test set for 100% code coverage of
1306 // SkPictureRecord::updateClipConservativelyUsingBounds
1307 {
robertphillips9f1c2412014-06-09 06:25:34 -07001308 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001309 canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1310 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1311 REPORTER_ASSERT(reporter, true == nonEmpty);
1312 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1313 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1314 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1315 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1316 }
1317 {
robertphillips9f1c2412014-06-09 06:25:34 -07001318 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001319 canvas->clipPath(path, SkRegion::kIntersect_Op);
1320 canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1321 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1322 REPORTER_ASSERT(reporter, true == nonEmpty);
1323 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1324 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1325 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1326 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1327 }
1328 {
robertphillips9f1c2412014-06-09 06:25:34 -07001329 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001330 canvas->clipPath(path, SkRegion::kIntersect_Op);
1331 canvas->clipPath(invPath, SkRegion::kUnion_Op);
1332 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1333 REPORTER_ASSERT(reporter, true == nonEmpty);
1334 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1335 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1336 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1337 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1338 }
1339 {
robertphillips9f1c2412014-06-09 06:25:34 -07001340 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001341 canvas->clipPath(path, SkRegion::kDifference_Op);
1342 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1343 REPORTER_ASSERT(reporter, true == nonEmpty);
1344 REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1345 REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1346 REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1347 REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1348 }
1349 {
robertphillips9f1c2412014-06-09 06:25:34 -07001350 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001351 canvas->clipPath(path, SkRegion::kReverseDifference_Op);
1352 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1353 // True clip is actually empty in this case, but the best
1354 // determination we can make using only bounds as input is that the
1355 // clip is included in the bounds of 'path'.
1356 REPORTER_ASSERT(reporter, true == nonEmpty);
1357 REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1358 REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1359 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1360 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1361 }
1362 {
robertphillips9f1c2412014-06-09 06:25:34 -07001363 SkCanvas* canvas = recorder.beginRecording(10, 10);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001364 canvas->clipPath(path, SkRegion::kIntersect_Op);
1365 canvas->clipPath(path2, SkRegion::kXOR_Op);
1366 bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1367 REPORTER_ASSERT(reporter, true == nonEmpty);
1368 REPORTER_ASSERT(reporter, 6 == clipBounds.fLeft);
1369 REPORTER_ASSERT(reporter, 6 == clipBounds.fTop);
1370 REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1371 REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1372 }
1373}
1374
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001375/**
1376 * A canvas that records the number of clip commands.
1377 */
1378class ClipCountingCanvas : public SkCanvas {
1379public:
commit-bot@chromium.org6d3eaea2014-05-27 23:41:45 +00001380 ClipCountingCanvas(int width, int height)
commit-bot@chromium.orge2543102014-01-31 19:42:58 +00001381 : INHERITED(width, height)
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001382 , fClipCount(0){
1383 }
1384
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001385 virtual void onClipRect(const SkRect& r,
1386 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001387 ClipEdgeStyle edgeStyle) SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001388 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001389 this->INHERITED::onClipRect(r, op, edgeStyle);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001390 }
1391
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001392 virtual void onClipRRect(const SkRRect& rrect,
1393 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001394 ClipEdgeStyle edgeStyle)SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001395 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001396 this->INHERITED::onClipRRect(rrect, op, edgeStyle);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001397 }
1398
skia.committer@gmail.com370a8992014-03-01 03:02:09 +00001399 virtual void onClipPath(const SkPath& path,
1400 SkRegion::Op op,
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001401 ClipEdgeStyle edgeStyle) SK_OVERRIDE {
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001402 fClipCount += 1;
robertphillips@google.com8f90a892014-02-28 18:19:39 +00001403 this->INHERITED::onClipPath(path, op, edgeStyle);
1404 }
1405
1406 virtual void onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) SK_OVERRIDE {
1407 fClipCount += 1;
1408 this->INHERITED::onClipRegion(deviceRgn, op);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001409 }
1410
1411 unsigned getClipCount() const { return fClipCount; }
1412
1413private:
1414 unsigned fClipCount;
1415
1416 typedef SkCanvas INHERITED;
1417};
1418
1419static void test_clip_expansion(skiatest::Reporter* reporter) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001420 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001421 SkCanvas* canvas = recorder.beginRecording(10, 10);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001422
1423 canvas->clipRect(SkRect::MakeEmpty(), SkRegion::kReplace_Op);
1424 // The following expanding clip should not be skipped.
1425 canvas->clipRect(SkRect::MakeXYWH(4, 4, 3, 3), SkRegion::kUnion_Op);
1426 // Draw something so the optimizer doesn't just fold the world.
1427 SkPaint p;
1428 p.setColor(SK_ColorBLUE);
1429 canvas->drawPaint(p);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001430 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001431
commit-bot@chromium.orge2543102014-01-31 19:42:58 +00001432 ClipCountingCanvas testCanvas(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001433 picture->draw(&testCanvas);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001434
1435 // Both clips should be present on playback.
1436 REPORTER_ASSERT(reporter, testCanvas.getClipCount() == 2);
1437}
1438
tomhudson@google.com381010e2013-10-24 11:12:47 +00001439static void test_hierarchical(skiatest::Reporter* reporter) {
1440 SkBitmap bm;
1441 make_bm(&bm, 10, 10, SK_ColorRED, true);
1442
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001443 SkPictureRecorder recorder;
tomhudson@google.com381010e2013-10-24 11:12:47 +00001444
robertphillips9f1c2412014-06-09 06:25:34 -07001445 recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001446 SkAutoTUnref<SkPicture> childPlain(recorder.endRecording());
1447 REPORTER_ASSERT(reporter, !childPlain->willPlayBackBitmaps()); // 0
tomhudson@google.com381010e2013-10-24 11:12:47 +00001448
robertphillips9f1c2412014-06-09 06:25:34 -07001449 recorder.beginRecording(10, 10)->drawBitmap(bm, 0, 0);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001450 SkAutoTUnref<SkPicture> childWithBitmap(recorder.endRecording());
1451 REPORTER_ASSERT(reporter, childWithBitmap->willPlayBackBitmaps()); // 1
tomhudson@google.com381010e2013-10-24 11:12:47 +00001452
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001453 {
robertphillips9f1c2412014-06-09 06:25:34 -07001454 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips9b14f262014-06-04 05:40:44 -07001455 canvas->drawPicture(childPlain);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001456 SkAutoTUnref<SkPicture> parentPP(recorder.endRecording());
1457 REPORTER_ASSERT(reporter, !parentPP->willPlayBackBitmaps()); // 0
1458 }
1459 {
robertphillips9f1c2412014-06-09 06:25:34 -07001460 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips9b14f262014-06-04 05:40:44 -07001461 canvas->drawPicture(childWithBitmap);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001462 SkAutoTUnref<SkPicture> parentPWB(recorder.endRecording());
1463 REPORTER_ASSERT(reporter, parentPWB->willPlayBackBitmaps()); // 1
1464 }
1465 {
robertphillips9f1c2412014-06-09 06:25:34 -07001466 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001467 canvas->drawBitmap(bm, 0, 0);
robertphillips9b14f262014-06-04 05:40:44 -07001468 canvas->drawPicture(childPlain);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001469 SkAutoTUnref<SkPicture> parentWBP(recorder.endRecording());
1470 REPORTER_ASSERT(reporter, parentWBP->willPlayBackBitmaps()); // 1
1471 }
1472 {
robertphillips9f1c2412014-06-09 06:25:34 -07001473 SkCanvas* canvas = recorder.beginRecording(10, 10);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001474 canvas->drawBitmap(bm, 0, 0);
robertphillips9b14f262014-06-04 05:40:44 -07001475 canvas->drawPicture(childWithBitmap);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001476 SkAutoTUnref<SkPicture> parentWBWB(recorder.endRecording());
1477 REPORTER_ASSERT(reporter, parentWBWB->willPlayBackBitmaps()); // 2
1478 }
tomhudson@google.com381010e2013-10-24 11:12:47 +00001479}
1480
robertphillips@google.comd5500882014-04-02 23:51:13 +00001481static void test_gen_id(skiatest::Reporter* reporter) {
1482
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001483 SkPicture empty;
robertphillips@google.comd5500882014-04-02 23:51:13 +00001484
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001485 // Empty pictures should still have a valid ID
1486 REPORTER_ASSERT(reporter, empty.uniqueID() != SK_InvalidGenID);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001487
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001488 SkPictureRecorder recorder;
robertphillips@google.comd5500882014-04-02 23:51:13 +00001489
robertphillips9f1c2412014-06-09 06:25:34 -07001490 SkCanvas* canvas = recorder.beginRecording(1, 1);
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001491 canvas->drawARGB(255, 255, 255, 255);
1492 SkAutoTUnref<SkPicture> hasData(recorder.endRecording());
1493 // picture should have a non-zero id after recording
1494 REPORTER_ASSERT(reporter, hasData->uniqueID() != SK_InvalidGenID);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001495
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001496 // both pictures should have different ids
1497 REPORTER_ASSERT(reporter, hasData->uniqueID() != empty.uniqueID());
robertphillips@google.comd5500882014-04-02 23:51:13 +00001498
1499 // test out copy constructor
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001500 SkPicture copyWithData(*hasData);
1501 REPORTER_ASSERT(reporter, hasData->uniqueID() == copyWithData.uniqueID());
robertphillips@google.comd5500882014-04-02 23:51:13 +00001502
1503 SkPicture emptyCopy(empty);
commit-bot@chromium.org2b4e3702014-04-07 18:26:22 +00001504 REPORTER_ASSERT(reporter, empty.uniqueID() != emptyCopy.uniqueID());
skia.committer@gmail.coma9157722014-04-03 03:04:26 +00001505
robertphillips@google.comd5500882014-04-02 23:51:13 +00001506 // test out swap
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001507 {
1508 SkPicture swapWithData;
1509 uint32_t beforeID1 = swapWithData.uniqueID();
1510 uint32_t beforeID2 = copyWithData.uniqueID();
1511 swapWithData.swap(copyWithData);
1512 REPORTER_ASSERT(reporter, copyWithData.uniqueID() == beforeID1);
1513 REPORTER_ASSERT(reporter, swapWithData.uniqueID() == beforeID2);
1514 }
robertphillips@google.comd5500882014-04-02 23:51:13 +00001515
1516 // test out clone
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001517 {
1518 SkAutoTUnref<SkPicture> cloneWithData(hasData->clone());
1519 REPORTER_ASSERT(reporter, hasData->uniqueID() == cloneWithData->uniqueID());
robertphillips@google.comd5500882014-04-02 23:51:13 +00001520
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001521 SkAutoTUnref<SkPicture> emptyClone(empty.clone());
1522 REPORTER_ASSERT(reporter, empty.uniqueID() != emptyClone->uniqueID());
1523 }
robertphillips@google.comd5500882014-04-02 23:51:13 +00001524}
1525
tfarina@chromium.orge4fafb12013-12-12 21:11:12 +00001526DEF_TEST(Picture, reporter) {
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001527#ifdef SK_DEBUG
1528 test_deleting_empty_playback();
1529 test_serializing_empty_picture();
scroggo@google.com4b90b112012-12-04 15:08:56 +00001530#else
1531 test_bad_bitmap();
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001532#endif
commit-bot@chromium.orgea7d08e2014-02-13 16:00:51 +00001533 test_unbalanced_save_restores(reporter);
sugoi@google.com54f0d1b2013-02-27 19:17:41 +00001534 test_peephole();
robertphillips@google.comb950c6f2014-04-25 00:02:12 +00001535#if SK_SUPPORT_GPU
commit-bot@chromium.orge2cb12a2014-04-24 21:53:13 +00001536 test_gpu_veto(reporter);
robertphillips@google.comb950c6f2014-04-25 00:02:12 +00001537#endif
reed@google.comfe7b1ed2012-11-29 21:00:39 +00001538 test_gatherpixelrefs(reporter);
robertphillips@google.com56bf6e42014-01-13 13:33:26 +00001539 test_gatherpixelrefsandrects(reporter);
scroggo@google.com7c9d5392012-12-10 15:40:55 +00001540 test_bitmap_with_encoded_data(reporter);
junov@chromium.org94f20dc2013-01-28 21:04:44 +00001541 test_clone_empty(reporter);
commit-bot@chromium.org70512af2014-03-18 17:45:32 +00001542 test_draw_empty(reporter);
junov@chromium.orgd575eed2013-05-08 15:39:13 +00001543 test_clip_bound_opt(reporter);
fmalita@google.comd0f1a4f2013-08-27 15:50:19 +00001544 test_clip_expansion(reporter);
tomhudson@google.com381010e2013-10-24 11:12:47 +00001545 test_hierarchical(reporter);
robertphillips@google.comd5500882014-04-02 23:51:13 +00001546 test_gen_id(reporter);
scroggo@google.comd614c6a2012-09-14 17:26:37 +00001547}
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001548
commit-bot@chromium.org0205aba2014-05-06 12:02:22 +00001549#if SK_SUPPORT_GPU
1550DEF_GPUTEST(GPUPicture, reporter, factory) {
1551 test_gpu_picture_optimization(reporter, factory);
1552}
1553#endif
1554
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001555static void draw_bitmaps(const SkBitmap bitmap, SkCanvas* canvas) {
1556 const SkPaint paint;
1557 const SkRect rect = { 5.0f, 5.0f, 8.0f, 8.0f };
1558 const SkIRect irect = { 2, 2, 3, 3 };
1559
1560 // Don't care what these record, as long as they're legal.
1561 canvas->drawBitmap(bitmap, 0.0f, 0.0f, &paint);
1562 canvas->drawBitmapRectToRect(bitmap, &rect, rect, &paint, SkCanvas::kNone_DrawBitmapRectFlag);
1563 canvas->drawBitmapMatrix(bitmap, SkMatrix::I(), &paint);
1564 canvas->drawBitmapNine(bitmap, irect, rect, &paint);
1565 canvas->drawSprite(bitmap, 1, 1);
1566}
1567
1568static void test_draw_bitmaps(SkCanvas* canvas) {
1569 SkBitmap empty;
1570 draw_bitmaps(empty, canvas);
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +00001571 empty.setInfo(SkImageInfo::MakeN32Premul(10, 10));
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001572 draw_bitmaps(empty, canvas);
1573}
1574
1575DEF_TEST(Picture_EmptyBitmap, r) {
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001576 SkPictureRecorder recorder;
robertphillips9f1c2412014-06-09 06:25:34 -07001577 test_draw_bitmaps(recorder.beginRecording(10, 10));
robertphillips@google.com84b18c72014-04-13 19:09:42 +00001578 SkAutoTUnref<SkPicture> picture(recorder.endRecording());
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001579}
1580
1581DEF_TEST(Canvas_EmptyBitmap, r) {
1582 SkBitmap dst;
mike@reedtribe.orgdeee4962014-02-13 14:41:43 +00001583 dst.allocN32Pixels(10, 10);
commit-bot@chromium.org50b393a2014-02-10 18:29:10 +00001584 SkCanvas canvas(dst);
1585
1586 test_draw_bitmaps(&canvas);
1587}