PictureTest.cpp revision 2d970b5128f7270cd01a93e4ce68d0c3ea67ac71
1/*
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 */
7
8#include "SkBitmapDevice.h"
9#include "SkBlurImageFilter.h"
10#include "SkCanvas.h"
11#include "SkColorPriv.h"
12#include "SkDashPathEffect.h"
13#include "SkData.h"
14#include "SkDecodingImageGenerator.h"
15#include "SkError.h"
16#if SK_SUPPORT_GPU
17#include "SkGpuDevice.h"
18#endif
19#include "SkImageEncoder.h"
20#include "SkImageGenerator.h"
21#include "SkPaint.h"
22#include "SkPicture.h"
23#include "SkPictureRecorder.h"
24#include "SkPictureUtils.h"
25#include "SkRRect.h"
26#include "SkRandom.h"
27#include "SkShader.h"
28#include "SkStream.h"
29
30#if SK_SUPPORT_GPU
31#include "SkSurface.h"
32#include "GrContextFactory.h"
33#include "GrPictureUtils.h"
34#endif
35#include "Test.h"
36
37#include "SkLumaColorFilter.h"
38#include "SkColorFilterImageFilter.h"
39
40static const int gColorScale = 30;
41static const int gColorOffset = 60;
42
43static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) {
44    bm->allocN32Pixels(w, h);
45    bm->eraseColor(color);
46    if (immutable) {
47        bm->setImmutable();
48    }
49}
50
51static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) {
52    SkASSERT(w % 2 == 0);
53    SkASSERT(h % 2 == 0);
54    bm->allocPixels(SkImageInfo::Make(w, h, kAlpha_8_SkColorType,
55                                      kPremul_SkAlphaType));
56    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}
73
74static 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
81typedef void (*DrawBitmapProc)(SkCanvas*, const SkBitmap&,
82                               const SkBitmap&, const SkPoint&,
83                               SkTDArray<SkPixelRef*>* usedPixRefs);
84
85static void drawpaint_proc(SkCanvas* canvas, const SkBitmap& bm,
86                           const SkBitmap& altBM, const SkPoint& pos,
87                           SkTDArray<SkPixelRef*>* usedPixRefs) {
88    SkPaint paint;
89    init_paint(&paint, bm);
90
91    canvas->drawPaint(paint);
92    *usedPixRefs->append() = bm.pixelRef();
93}
94
95static void drawpoints_proc(SkCanvas* canvas, const SkBitmap& bm,
96                            const SkBitmap& altBM, const SkPoint& pos,
97                            SkTDArray<SkPixelRef*>* usedPixRefs) {
98    SkPaint paint;
99    init_paint(&paint, bm);
100
101    // draw a rect
102    SkPoint points[5] = {
103        { 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 },
108    };
109
110    canvas->drawPoints(SkCanvas::kPolygon_PointMode, 5, points, paint);
111    *usedPixRefs->append() = bm.pixelRef();
112}
113
114static void drawrect_proc(SkCanvas* canvas, const SkBitmap& bm,
115                          const SkBitmap& altBM, const SkPoint& pos,
116                          SkTDArray<SkPixelRef*>* usedPixRefs) {
117    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);
124    *usedPixRefs->append() = bm.pixelRef();
125}
126
127static void drawoval_proc(SkCanvas* canvas, const SkBitmap& bm,
128                          const SkBitmap& altBM, const SkPoint& pos,
129                          SkTDArray<SkPixelRef*>* usedPixRefs) {
130    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);
137    *usedPixRefs->append() = bm.pixelRef();
138}
139
140static void drawrrect_proc(SkCanvas* canvas, const SkBitmap& bm,
141                           const SkBitmap& altBM, const SkPoint& pos,
142                           SkTDArray<SkPixelRef*>* usedPixRefs) {
143    SkPaint paint;
144    init_paint(&paint, bm);
145
146    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);
152    *usedPixRefs->append() = bm.pixelRef();
153}
154
155static void drawpath_proc(SkCanvas* canvas, const SkBitmap& bm,
156                          const SkBitmap& altBM, const SkPoint& pos,
157                          SkTDArray<SkPixelRef*>* usedPixRefs) {
158    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);
168    *usedPixRefs->append() = bm.pixelRef();
169}
170
171static void drawbitmap_proc(SkCanvas* canvas, const SkBitmap& bm,
172                            const SkBitmap& altBM, const SkPoint& pos,
173                            SkTDArray<SkPixelRef*>* usedPixRefs) {
174    canvas->drawBitmap(bm, pos.fX, pos.fY, NULL);
175    *usedPixRefs->append() = bm.pixelRef();
176}
177
178static void drawbitmap_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
179                                       const SkBitmap& altBM, const SkPoint& pos,
180                                       SkTDArray<SkPixelRef*>* usedPixRefs) {
181    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);
186    *usedPixRefs->append() = bm.pixelRef();
187    *usedPixRefs->append() = altBM.pixelRef();
188}
189
190static void drawsprite_proc(SkCanvas* canvas, const SkBitmap& bm,
191                            const SkBitmap& altBM, const SkPoint& pos,
192                            SkTDArray<SkPixelRef*>* usedPixRefs) {
193    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);
199    *usedPixRefs->append() = bm.pixelRef();
200}
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).
205static void drawsprite_withshader_proc(SkCanvas* canvas, const SkBitmap& bm,
206                                       const SkBitmap& altBM, const SkPoint& pos,
207                                       SkTDArray<SkPixelRef*>* usedPixRefs) {
208    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);
217    *usedPixRefs->append() = bm.pixelRef();
218    *usedPixRefs->append() = altBM.pixelRef();
219}
220#endif
221
222static void drawbitmaprect_proc(SkCanvas* canvas, const SkBitmap& bm,
223                                const SkBitmap& altBM, const SkPoint& pos,
224                                SkTDArray<SkPixelRef*>* usedPixRefs) {
225    SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
226
227    r.offset(pos.fX, pos.fY);
228    canvas->drawBitmapRectToRect(bm, NULL, r, NULL);
229    *usedPixRefs->append() = bm.pixelRef();
230}
231
232static void drawbitmaprect_withshader_proc(SkCanvas* canvas,
233                                           const SkBitmap& bm,
234                                           const SkBitmap& altBM,
235                                           const SkPoint& pos,
236                                           SkTDArray<SkPixelRef*>* usedPixRefs) {
237    SkPaint paint;
238    init_paint(&paint, bm);
239
240    SkRect r = { 0, 0, SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) };
241    r.offset(pos.fX, pos.fY);
242
243    // The bitmap in the paint is ignored unless we're drawing an A8 bitmap
244    canvas->drawBitmapRectToRect(altBM, NULL, r, &paint);
245    *usedPixRefs->append() = bm.pixelRef();
246    *usedPixRefs->append() = altBM.pixelRef();
247}
248
249static void drawtext_proc(SkCanvas* canvas, const SkBitmap& bm,
250                          const SkBitmap& altBM, const SkPoint& pos,
251                          SkTDArray<SkPixelRef*>* usedPixRefs) {
252    SkPaint paint;
253    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);
257    *usedPixRefs->append() = bm.pixelRef();
258}
259
260static void drawpostext_proc(SkCanvas* canvas, const SkBitmap& bm,
261                             const SkBitmap& altBM, const SkPoint& pos,
262                             SkTDArray<SkPixelRef*>* usedPixRefs) {
263    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);
269    *usedPixRefs->append() = bm.pixelRef();
270}
271
272static void drawtextonpath_proc(SkCanvas* canvas, const SkBitmap& bm,
273                                const SkBitmap& altBM, const SkPoint& pos,
274                                SkTDArray<SkPixelRef*>* usedPixRefs) {
275    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);
285    *usedPixRefs->append() = bm.pixelRef();
286}
287
288static void drawverts_proc(SkCanvas* canvas, const SkBitmap& bm,
289                           const SkBitmap& altBM, const SkPoint& pos,
290                           SkTDArray<SkPixelRef*>* usedPixRefs) {
291    SkPaint paint;
292    init_paint(&paint, bm);
293
294    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() }
299    };
300    SkPoint texs[4] = { { 0, 0 },
301                        { SkIntToScalar(bm.width()), 0 },
302                        { SkIntToScalar(bm.width()), SkIntToScalar(bm.height()) },
303                        { 0, SkIntToScalar(bm.height()) } };
304    uint16_t indices[6] = { 0, 1, 2, 0, 2, 3 };
305
306    canvas->drawVertices(SkCanvas::kTriangles_VertexMode, 4, verts, texs, NULL, NULL,
307                         indices, 6, paint);
308    *usedPixRefs->append() = bm.pixelRef();
309}
310
311// Return a picture with the bitmaps drawn at the specified positions.
312static SkPicture* record_bitmaps(const SkBitmap bm[],
313                                 const SkPoint pos[],
314                                 SkTDArray<SkPixelRef*> analytic[],
315                                 int count,
316                                 DrawBitmapProc proc) {
317    SkPictureRecorder recorder;
318    SkCanvas* canvas = recorder.beginRecording(1000, 1000, NULL, 0);
319    for (int i = 0; i < count; ++i) {
320        analytic[i].rewind();
321        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);
326        proc(canvas, bm[i], bm[count+i], pos[i], &analytic[i]);
327        canvas->restore();
328    }
329    return recorder.endRecording();
330}
331
332static void rand_rect(SkRect* rect, SkRandom& rand, SkScalar W, SkScalar H) {
333    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
345static void draw(SkPicture* pic, int width, int height, SkBitmap* result) {
346    make_bm(result, width, height, SK_ColorBLACK, false);
347
348    SkCanvas canvas(*result);
349    canvas.drawPicture(*pic);
350}
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
366// 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
368// 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
382    // 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
391    for (int y = ir.fTop; y < ir.fBottom; ++y) {
392        for (int x = ir.fLeft; x < ir.fRight; ++x) {
393            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) {
398                uint32_t index = SkGetPackedR32(pmc);
399                SkASSERT(SkGetPackedG32(pmc) == index);
400                SkASSERT(SkGetPackedB32(pmc) == index);
401                if (0 == index) {
402                    continue;           // background color
403                }
404                SkASSERT(0 == (index - gColorOffset) % gColorScale);
405                index = (index - gColorOffset) / gColorScale;
406                SkASSERT(static_cast<int>(index) < count);
407                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
419static void gather_from_analytic(const SkPoint pos[], SkScalar w, SkScalar h,
420                                 const SkTDArray<SkPixelRef*> analytic[],
421                                 int count,
422                                 SkTDArray<SkPixelRef*>* result,
423                                 const SkRect& subset) {
424    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
433
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"},
447#if 0
448    {drawsprite_withshader_proc, "drawsprite_withshader"},
449#endif
450    {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"},
456};
457
458static void create_textures(SkBitmap* bm, SkPixelRef** refs, int num, int w, int h) {
459    // Our convention is that the color components contain an encoding of
460    // the index of their corresponding bitmap/pixelref. (0,0,0,0) is
461    // reserved for the background
462    for (int i = 0; i < num; ++i) {
463        make_bm(&bm[i], w, h,
464                SkColorSetARGB(0xFF,
465                               gColorScale*i+gColorOffset,
466                               gColorScale*i+gColorOffset,
467                               gColorScale*i+gColorOffset),
468                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
479static void test_gatherpixelrefs(skiatest::Reporter* reporter) {
480    const int IW = 32;
481    const int IH = IW;
482    const SkScalar W = SkIntToScalar(IW);
483    const SkScalar H = W;
484
485    static const int N = 4;
486    SkBitmap bm[2*N];
487    SkPixelRef* refs[2*N];
488    SkTDArray<SkPixelRef*> analytic[N];
489
490    const SkPoint pos[N] = {
491        { 0, 0 }, { W, 0 }, { 0, H }, { W, H }
492    };
493
494    create_textures(bm, refs, N, IW, IH);
495
496    SkRandom rand;
497    for (size_t k = 0; k < SK_ARRAY_COUNT(gProcs); ++k) {
498        SkAutoTUnref<SkPicture> pic(
499            record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
500
501        REPORTER_ASSERT(reporter, pic->willPlayBackBitmaps() || N == 0);
502        // quick check for a small piece of each quadrant, which should just
503        // contain 1 or 2 bitmaps.
504        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));
509            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]));
523            }
524        }
525
526        SkBitmap image;
527        draw(pic, 2*IW, 2*IH, &image);
528
529        // 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
535            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);
540
541            SkData* data = SkPictureUtils::GatherPixelRefs(pic, r);
542            size_t dataSize = data ? data->size() : 0;
543            int gatherCount = static_cast<int>(dataSize / sizeof(SkPixelRef*));
544            SkASSERT(gatherCount * sizeof(SkPixelRef*) == dataSize);
545            SkPixelRef** gatherRefs = data ? (SkPixelRef**)(data->data()) : NULL;
546            SkAutoDataUnref adu(data);
547
548            // 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) {
552                if (-1 == fromAnalytic.find(fromImage[i])) {
553                    ERRORF(reporter, "PixelRef missing %d %s",
554                           i, gProcs[k].desc);
555                }
556            }
557
558            /*
559             *  GatherPixelRefs is conservative, so it can return more bitmaps
560             *  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
562             *  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             */
565            for (int i = 0; i < fromAnalytic.count(); ++i) {
566                bool found = find(gatherRefs, fromAnalytic[i], gatherCount);
567                if (!found) {
568                    ERRORF(reporter, "PixelRef missing %d %s",
569                           i, gProcs[k].desc);
570                }
571#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
584static 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) {
603        SkAutoTUnref<SkPicture> pic(
604            record_bitmaps(bm, pos, analytic, N, gProcs[k].proc));
605
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) {
628                REPORTER_ASSERT(reporter,
629                    (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
660            // list.
661            for (int i = 0; i < fromAnalytic.count(); ++i) {
662                REPORTER_ASSERT(reporter, -1 != gatheredRefs.find(fromAnalytic[i]));
663            }
664        }
665    }
666}
667
668#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() {
672    SkPictureRecorder recorder;
673    // Creates an SkPictureRecord
674    recorder.beginRecording(0, 0, NULL, 0);
675    // Turns that into an SkPicturePlayback
676    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
677    // Deletes the old SkPicturePlayback, and creates a new SkPictureRecord
678    recorder.beginRecording(0, 0, NULL, 0);
679}
680
681// Ensure that serializing an empty picture does not assert. Likewise only runs in debug mode.
682static void test_serializing_empty_picture() {
683    SkPictureRecorder recorder;
684    recorder.beginRecording(0, 0, NULL, 0);
685    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
686    SkDynamicMemoryWStream stream;
687    picture->serialize(&stream);
688}
689#endif
690
691static void rand_op(SkCanvas* canvas, SkRandom& rand) {
692    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
711#if SK_SUPPORT_GPU
712static void test_gpu_veto(skiatest::Reporter* reporter) {
713
714    SkPictureRecorder recorder;
715
716    SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
717    {
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
733    REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
734
735    canvas = recorder.beginRecording(100, 100, NULL, 0);
736    {
737        SkPath path;
738
739        path.moveTo(0, 0);
740        path.lineTo(0, 50);
741        path.lineTo(25, 25);
742        path.lineTo(50, 50);
743        path.lineTo(50, 0);
744        path.close();
745        REPORTER_ASSERT(reporter, !path.isConvex());
746
747        SkPaint paint;
748        paint.setAntiAlias(true);
749        for (int i = 0; i < 50; ++i) {
750            canvas->drawPath(path, paint);
751        }
752    }
753    picture.reset(recorder.endRecording());
754    // A lot of AA concave paths currently render an SkPicture undesireable for GPU rendering
755    REPORTER_ASSERT(reporter, !picture->suitableForGpuRasterization(NULL));
756
757    canvas = recorder.beginRecording(100, 100, NULL, 0);
758    {
759        SkPath path;
760
761        path.moveTo(0, 0);
762        path.lineTo(0, 50);
763        path.lineTo(25, 25);
764        path.lineTo(50, 50);
765        path.lineTo(50, 0);
766        path.close();
767        REPORTER_ASSERT(reporter, !path.isConvex());
768
769        SkPaint paint;
770        paint.setAntiAlias(true);
771        paint.setStyle(SkPaint::kStroke_Style);
772        paint.setStrokeWidth(0);
773        for (int i = 0; i < 50; ++i) {
774            canvas->drawPath(path, paint);
775        }
776    }
777    picture.reset(recorder.endRecording());
778    // hairline stroked AA concave paths are fine for GPU rendering
779    REPORTER_ASSERT(reporter, picture->suitableForGpuRasterization(NULL));
780}
781
782static void test_gpu_picture_optimization(skiatest::Reporter* reporter,
783                                          GrContextFactory* factory) {
784
785    GrContext* context = factory->get(GrContextFactory::kNative_GLContextType);
786
787    static const int kWidth = 100;
788    static const int kHeight = 100;
789
790    SkAutoTUnref<SkPicture> pict;
791
792    // create a picture with the structure:
793    // 1)
794    //      SaveLayer
795    //      Restore
796    // 2)
797    //      SaveLayer
798    //          Translate
799    //          SaveLayer w/ bound
800    //          Restore
801    //      Restore
802    // 3)
803    //      SaveLayer w/ copyable paint
804    //      Restore
805    // 4)
806    //      SaveLayer w/ non-copyable paint
807    //      Restore
808    {
809        SkPictureRecorder recorder;
810
811        SkCanvas* c = recorder.beginRecording(kWidth, kHeight, NULL, 0);
812        // 1)
813        c->saveLayer(NULL, NULL);
814        c->restore();
815
816        // 2)
817        c->saveLayer(NULL, NULL);
818            c->translate(kWidth/2, kHeight/2);
819            SkRect r = SkRect::MakeXYWH(0, 0, kWidth/2, kHeight/2);
820            c->saveLayer(&r, NULL);
821            c->restore();
822        c->restore();
823
824        // 3)
825        {
826            SkPaint p;
827            p.setColor(SK_ColorRED);
828            c->saveLayer(NULL, &p);
829            c->restore();
830        }
831        // 4)
832        // TODO: this case will need to be removed once the paint's are immutable
833        {
834            SkPaint p;
835            SkAutoTUnref<SkColorFilter> cf(SkLumaColorFilter::Create());
836            p.setImageFilter(SkColorFilterImageFilter::Create(cf.get()))->unref();
837            c->saveLayer(NULL, &p);
838            c->restore();
839        }
840
841        pict.reset(recorder.endRecording());
842    }
843
844    // Now test out the SaveLayer extraction
845    {
846        SkImageInfo info = SkImageInfo::MakeN32Premul(kWidth, kHeight);
847
848        SkAutoTUnref<SkSurface> surface(SkSurface::NewScratchRenderTarget(context, info));
849
850        SkCanvas* canvas = surface->getCanvas();
851
852        canvas->EXPERIMENTAL_optimize(pict);
853
854        SkPicture::AccelData::Key key = GPUAccelData::ComputeAccelDataKey();
855
856        const SkPicture::AccelData* data = pict->EXPERIMENTAL_getAccelData(key);
857        REPORTER_ASSERT(reporter, NULL != data);
858
859        const GPUAccelData *gpuData = static_cast<const GPUAccelData*>(data);
860        REPORTER_ASSERT(reporter, 5 == gpuData->numSaveLayers());
861
862        const GPUAccelData::SaveLayerInfo& info0 = gpuData->saveLayerInfo(0);
863        // The parent/child layer appear in reverse order
864        const GPUAccelData::SaveLayerInfo& info1 = gpuData->saveLayerInfo(2);
865        const GPUAccelData::SaveLayerInfo& info2 = gpuData->saveLayerInfo(1);
866        const GPUAccelData::SaveLayerInfo& info3 = gpuData->saveLayerInfo(3);
867//        const GPUAccelData::SaveLayerInfo& info4 = gpuData->saveLayerInfo(4);
868
869        REPORTER_ASSERT(reporter, info0.fValid);
870        REPORTER_ASSERT(reporter, kWidth == info0.fSize.fWidth && kHeight == info0.fSize.fHeight);
871        REPORTER_ASSERT(reporter, info0.fCTM.isIdentity());
872        REPORTER_ASSERT(reporter, 0 == info0.fOffset.fX && 0 == info0.fOffset.fY);
873        REPORTER_ASSERT(reporter, NULL != info0.fPaint);
874        REPORTER_ASSERT(reporter, !info0.fIsNested && !info0.fHasNestedLayers);
875
876        REPORTER_ASSERT(reporter, info1.fValid);
877        REPORTER_ASSERT(reporter, kWidth == info1.fSize.fWidth && kHeight == info1.fSize.fHeight);
878        REPORTER_ASSERT(reporter, info1.fCTM.isIdentity());
879        REPORTER_ASSERT(reporter, 0 == info1.fOffset.fX && 0 == info1.fOffset.fY);
880        REPORTER_ASSERT(reporter, NULL != info1.fPaint);
881        REPORTER_ASSERT(reporter, !info1.fIsNested && info1.fHasNestedLayers); // has a nested SL
882
883        REPORTER_ASSERT(reporter, info2.fValid);
884        REPORTER_ASSERT(reporter, kWidth/2 == info2.fSize.fWidth &&
885                                  kHeight/2 == info2.fSize.fHeight); // bound reduces size
886        REPORTER_ASSERT(reporter, info2.fCTM.isIdentity());         // translated
887        REPORTER_ASSERT(reporter, kWidth/2 == info2.fOffset.fX &&
888                                  kHeight/2 == info2.fOffset.fY);
889        REPORTER_ASSERT(reporter, NULL != info1.fPaint);
890        REPORTER_ASSERT(reporter, info2.fIsNested && !info2.fHasNestedLayers); // is nested
891
892        REPORTER_ASSERT(reporter, info3.fValid);
893        REPORTER_ASSERT(reporter, kWidth == info3.fSize.fWidth && kHeight == info3.fSize.fHeight);
894        REPORTER_ASSERT(reporter, info3.fCTM.isIdentity());
895        REPORTER_ASSERT(reporter, 0 == info3.fOffset.fX && 0 == info3.fOffset.fY);
896        REPORTER_ASSERT(reporter, NULL != info3.fPaint);
897        REPORTER_ASSERT(reporter, !info3.fIsNested && !info3.fHasNestedLayers);
898
899#if 0 // needs more though for GrGatherCanvas
900        REPORTER_ASSERT(reporter, !info4.fValid);                 // paint is/was uncopyable
901        REPORTER_ASSERT(reporter, kWidth == info4.fSize.fWidth && kHeight == info4.fSize.fHeight);
902        REPORTER_ASSERT(reporter, 0 == info4.fOffset.fX && 0 == info4.fOffset.fY);
903        REPORTER_ASSERT(reporter, info4.fCTM.isIdentity());
904        REPORTER_ASSERT(reporter, NULL == info4.fPaint);     // paint is/was uncopyable
905        REPORTER_ASSERT(reporter, !info4.fIsNested && !info4.fHasNestedLayers);
906#endif
907    }
908}
909
910#endif
911
912static void set_canvas_to_save_count_4(SkCanvas* canvas) {
913    canvas->restoreToCount(1);
914    canvas->save();
915    canvas->save();
916    canvas->save();
917}
918
919static void test_unbalanced_save_restores(skiatest::Reporter* reporter) {
920    SkCanvas testCanvas(100, 100);
921    set_canvas_to_save_count_4(&testCanvas);
922
923    REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
924
925    SkPaint paint;
926    SkRect rect = SkRect::MakeLTRB(-10000000, -10000000, 10000000, 10000000);
927
928    SkPictureRecorder recorder;
929
930    {
931        // Create picture with 2 unbalanced saves
932        SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
933        canvas->save();
934        canvas->translate(10, 10);
935        canvas->drawRect(rect, paint);
936        canvas->save();
937        canvas->translate(10, 10);
938        canvas->drawRect(rect, paint);
939        SkAutoTUnref<SkPicture> extraSavePicture(recorder.endRecording());
940
941        testCanvas.drawPicture(*extraSavePicture);
942        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
943    }
944
945    set_canvas_to_save_count_4(&testCanvas);
946
947    {
948        // Create picture with 2 unbalanced restores
949        SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
950        canvas->save();
951        canvas->translate(10, 10);
952        canvas->drawRect(rect, paint);
953        canvas->save();
954        canvas->translate(10, 10);
955        canvas->drawRect(rect, paint);
956        canvas->restore();
957        canvas->restore();
958        canvas->restore();
959        canvas->restore();
960        SkAutoTUnref<SkPicture> extraRestorePicture(recorder.endRecording());
961
962        testCanvas.drawPicture(*extraRestorePicture);
963        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
964    }
965
966    set_canvas_to_save_count_4(&testCanvas);
967
968    {
969        SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
970        canvas->translate(10, 10);
971        canvas->drawRect(rect, paint);
972        SkAutoTUnref<SkPicture> noSavePicture(recorder.endRecording());
973
974        testCanvas.drawPicture(*noSavePicture);
975        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
976        REPORTER_ASSERT(reporter, testCanvas.getTotalMatrix().isIdentity());
977    }
978
979#if defined(SK_SUPPORT_LEGACY_PICTURE_CAN_RECORD) && \
980    defined(SK_SUPPORT_LEGACY_DERIVED_PICTURE_CLASSES)
981    set_canvas_to_save_count_4(&testCanvas);
982
983    // Due to "fake" endRecording, the old SkPicture recording interface
984    // allowed unbalanced saves/restores to leak out. This sub-test checks
985    // that the situation has been remedied.
986    {
987        SkPicture p;
988
989        SkCanvas* canvas = p.beginRecording(100, 100);
990        for (int i = 0; i < 4; ++i) {
991           canvas->save();
992        }
993        SkRect r = SkRect::MakeWH(50, 50);
994        SkPaint paint;
995        canvas->drawRect(r, paint);
996
997        // Copying a mid-recording picture could result in unbalanced saves/restores
998        SkPicture p2(p);
999
1000        testCanvas.drawPicture(p2);
1001        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1002        set_canvas_to_save_count_4(&testCanvas);
1003
1004        // Cloning a mid-recording picture could result in unbalanced saves/restores
1005        SkAutoTUnref<SkPicture> p3(p.clone());
1006        testCanvas.drawPicture(*p3);
1007        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1008        set_canvas_to_save_count_4(&testCanvas);
1009
1010        // Serializing a mid-recording picture could result in unbalanced saves/restores
1011        SkDynamicMemoryWStream wStream;
1012        p.serialize(&wStream);
1013        SkAutoDataUnref data(wStream.copyToData());
1014        SkMemoryStream stream(data);
1015        SkAutoTUnref<SkPicture> p4(SkPicture::CreateFromStream(&stream, NULL));
1016        testCanvas.drawPicture(*p4);
1017        REPORTER_ASSERT(reporter, 4 == testCanvas.getSaveCount());
1018    }
1019#endif
1020}
1021
1022static void test_peephole() {
1023    SkRandom rand;
1024
1025    SkPictureRecorder recorder;
1026
1027    for (int j = 0; j < 100; j++) {
1028        SkRandom rand2(rand); // remember the seed
1029
1030        SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
1031
1032        for (int i = 0; i < 1000; ++i) {
1033            rand_op(canvas, rand);
1034        }
1035        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1036
1037        rand = rand2;
1038    }
1039
1040    {
1041        SkCanvas* canvas = recorder.beginRecording(100, 100, NULL, 0);
1042        SkRect rect = SkRect::MakeWH(50, 50);
1043
1044        for (int i = 0; i < 100; ++i) {
1045            canvas->save();
1046        }
1047        while (canvas->getSaveCount() > 1) {
1048            canvas->clipRect(rect);
1049            canvas->restore();
1050        }
1051        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1052    }
1053}
1054
1055#ifndef SK_DEBUG
1056// Only test this is in release mode. We deliberately crash in debug mode, since a valid caller
1057// should never do this.
1058static void test_bad_bitmap() {
1059    // This bitmap has a width and height but no pixels. As a result, attempting to record it will
1060    // fail.
1061    SkBitmap bm;
1062    bm.setConfig(SkImageInfo::MakeN32Premul(100, 100));
1063    SkPictureRecorder recorder;
1064    SkCanvas* recordingCanvas = recorder.beginRecording(100, 100, NULL, 0);
1065    recordingCanvas->drawBitmap(bm, 0, 0);
1066    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1067
1068    SkCanvas canvas;
1069    canvas.drawPicture(*picture);
1070}
1071#endif
1072
1073static SkData* encode_bitmap_to_data(size_t*, const SkBitmap& bm) {
1074    return SkImageEncoder::EncodeData(bm, SkImageEncoder::kPNG_Type, 100);
1075}
1076
1077static SkData* serialized_picture_from_bitmap(const SkBitmap& bitmap) {
1078    SkPictureRecorder recorder;
1079    SkCanvas* canvas = recorder.beginRecording(bitmap.width(), bitmap.height(), NULL, 0);
1080    canvas->drawBitmap(bitmap, 0, 0);
1081    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1082
1083    SkDynamicMemoryWStream wStream;
1084    picture->serialize(&wStream, &encode_bitmap_to_data);
1085    return wStream.copyToData();
1086}
1087
1088struct ErrorContext {
1089    int fErrors;
1090    skiatest::Reporter* fReporter;
1091};
1092
1093static void assert_one_parse_error_cb(SkError error, void* context) {
1094    ErrorContext* errorContext = static_cast<ErrorContext*>(context);
1095    errorContext->fErrors++;
1096    // This test only expects one error, and that is a kParseError. If there are others,
1097    // there is some unknown problem.
1098    REPORTER_ASSERT_MESSAGE(errorContext->fReporter, 1 == errorContext->fErrors,
1099                            "This threw more errors than expected.");
1100    REPORTER_ASSERT_MESSAGE(errorContext->fReporter, kParseError_SkError == error,
1101                            SkGetLastErrorString());
1102}
1103
1104static void test_bitmap_with_encoded_data(skiatest::Reporter* reporter) {
1105    // Create a bitmap that will be encoded.
1106    SkBitmap original;
1107    make_bm(&original, 100, 100, SK_ColorBLUE, true);
1108    SkDynamicMemoryWStream wStream;
1109    if (!SkImageEncoder::EncodeStream(&wStream, original, SkImageEncoder::kPNG_Type, 100)) {
1110        return;
1111    }
1112    SkAutoDataUnref data(wStream.copyToData());
1113
1114    SkBitmap bm;
1115    bool installSuccess = SkInstallDiscardablePixelRef(
1116         SkDecodingImageGenerator::Create(data, SkDecodingImageGenerator::Options()), &bm);
1117    REPORTER_ASSERT(reporter, installSuccess);
1118
1119    // Write both bitmaps to pictures, and ensure that the resulting data streams are the same.
1120    // Flattening original will follow the old path of performing an encode, while flattening bm
1121    // will use the already encoded data.
1122    SkAutoDataUnref picture1(serialized_picture_from_bitmap(original));
1123    SkAutoDataUnref picture2(serialized_picture_from_bitmap(bm));
1124    REPORTER_ASSERT(reporter, picture1->equals(picture2));
1125    // Now test that a parse error was generated when trying to create a new SkPicture without
1126    // providing a function to decode the bitmap.
1127    ErrorContext context;
1128    context.fErrors = 0;
1129    context.fReporter = reporter;
1130    SkSetErrorCallback(assert_one_parse_error_cb, &context);
1131    SkMemoryStream pictureStream(picture1);
1132    SkClearLastError();
1133    SkAutoUnref pictureFromStream(SkPicture::CreateFromStream(&pictureStream, NULL));
1134    REPORTER_ASSERT(reporter, pictureFromStream.get() != NULL);
1135    SkClearLastError();
1136    SkSetErrorCallback(NULL, NULL);
1137}
1138
1139static void test_clone_empty(skiatest::Reporter* reporter) {
1140    // This is a regression test for crbug.com/172062
1141    // Before the fix, we used to crash accessing a null pointer when we
1142    // had a picture with no paints. This test passes by not crashing.
1143    {
1144        SkPictureRecorder recorder;
1145        recorder.beginRecording(1, 1, NULL, 0);
1146        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1147        SkAutoTUnref<SkPicture> destPicture(picture->clone());
1148        REPORTER_ASSERT(reporter, NULL != destPicture);
1149    }
1150}
1151
1152static void test_draw_empty(skiatest::Reporter* reporter) {
1153    SkBitmap result;
1154    make_bm(&result, 2, 2, SK_ColorBLACK, false);
1155
1156    SkCanvas canvas(result);
1157
1158    {
1159        // stock SkPicture
1160        SkPictureRecorder recorder;
1161        recorder.beginRecording(1, 1, NULL, 0);
1162        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1163
1164        canvas.drawPicture(*picture);
1165    }
1166
1167    {
1168        // tile grid
1169        SkTileGridFactory::TileGridInfo gridInfo;
1170        gridInfo.fMargin.setEmpty();
1171        gridInfo.fOffset.setZero();
1172        gridInfo.fTileInterval.set(1, 1);
1173
1174        SkTileGridFactory factory(gridInfo);
1175        SkPictureRecorder recorder;
1176        recorder.beginRecording(1, 1, &factory, 0);
1177        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1178
1179        canvas.drawPicture(*picture);
1180    }
1181
1182    {
1183        // RTree
1184        SkRTreeFactory factory;
1185        SkPictureRecorder recorder;
1186        recorder.beginRecording(1, 1, &factory, 0);
1187        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1188
1189        canvas.drawPicture(*picture);
1190    }
1191
1192    {
1193        // quad tree
1194        SkQuadTreeFactory factory;
1195        SkPictureRecorder recorder;
1196        recorder.beginRecording(1, 1, &factory, 0);
1197        SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1198
1199        canvas.drawPicture(*picture);
1200    }
1201}
1202
1203static void test_clip_bound_opt(skiatest::Reporter* reporter) {
1204    // Test for crbug.com/229011
1205    SkRect rect1 = SkRect::MakeXYWH(SkIntToScalar(4), SkIntToScalar(4),
1206                                    SkIntToScalar(2), SkIntToScalar(2));
1207    SkRect rect2 = SkRect::MakeXYWH(SkIntToScalar(7), SkIntToScalar(7),
1208                                    SkIntToScalar(1), SkIntToScalar(1));
1209    SkRect rect3 = SkRect::MakeXYWH(SkIntToScalar(6), SkIntToScalar(6),
1210                                    SkIntToScalar(1), SkIntToScalar(1));
1211
1212    SkPath invPath;
1213    invPath.addOval(rect1);
1214    invPath.setFillType(SkPath::kInverseEvenOdd_FillType);
1215    SkPath path;
1216    path.addOval(rect2);
1217    SkPath path2;
1218    path2.addOval(rect3);
1219    SkIRect clipBounds;
1220    SkPictureRecorder recorder;
1221    // Minimalist test set for 100% code coverage of
1222    // SkPictureRecord::updateClipConservativelyUsingBounds
1223    {
1224        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1225            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1226        canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1227        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1228        REPORTER_ASSERT(reporter, true == nonEmpty);
1229        REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1230        REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1231        REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1232        REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1233    }
1234    {
1235        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1236            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1237        canvas->clipPath(path, SkRegion::kIntersect_Op);
1238        canvas->clipPath(invPath, SkRegion::kIntersect_Op);
1239        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1240        REPORTER_ASSERT(reporter, true == nonEmpty);
1241        REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1242        REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1243        REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1244        REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1245    }
1246    {
1247        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1248            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1249        canvas->clipPath(path, SkRegion::kIntersect_Op);
1250        canvas->clipPath(invPath, SkRegion::kUnion_Op);
1251        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1252        REPORTER_ASSERT(reporter, true == nonEmpty);
1253        REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1254        REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1255        REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1256        REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1257    }
1258    {
1259        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1260            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1261        canvas->clipPath(path, SkRegion::kDifference_Op);
1262        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1263        REPORTER_ASSERT(reporter, true == nonEmpty);
1264        REPORTER_ASSERT(reporter, 0 == clipBounds.fLeft);
1265        REPORTER_ASSERT(reporter, 0 == clipBounds.fTop);
1266        REPORTER_ASSERT(reporter, 10 == clipBounds.fBottom);
1267        REPORTER_ASSERT(reporter, 10 == clipBounds.fRight);
1268    }
1269    {
1270        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1271            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1272        canvas->clipPath(path, SkRegion::kReverseDifference_Op);
1273        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1274        // True clip is actually empty in this case, but the best
1275        // determination we can make using only bounds as input is that the
1276        // clip is included in the bounds of 'path'.
1277        REPORTER_ASSERT(reporter, true == nonEmpty);
1278        REPORTER_ASSERT(reporter, 7 == clipBounds.fLeft);
1279        REPORTER_ASSERT(reporter, 7 == clipBounds.fTop);
1280        REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1281        REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1282    }
1283    {
1284        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL,
1285            SkPicture::kUsePathBoundsForClip_RecordingFlag);
1286        canvas->clipPath(path, SkRegion::kIntersect_Op);
1287        canvas->clipPath(path2, SkRegion::kXOR_Op);
1288        bool nonEmpty = canvas->getClipDeviceBounds(&clipBounds);
1289        REPORTER_ASSERT(reporter, true == nonEmpty);
1290        REPORTER_ASSERT(reporter, 6 == clipBounds.fLeft);
1291        REPORTER_ASSERT(reporter, 6 == clipBounds.fTop);
1292        REPORTER_ASSERT(reporter, 8 == clipBounds.fBottom);
1293        REPORTER_ASSERT(reporter, 8 == clipBounds.fRight);
1294    }
1295}
1296
1297/**
1298 * A canvas that records the number of clip commands.
1299 */
1300class ClipCountingCanvas : public SkCanvas {
1301public:
1302    explicit ClipCountingCanvas(int width, int height)
1303        : INHERITED(width, height)
1304        , fClipCount(0){
1305    }
1306
1307    virtual void onClipRect(const SkRect& r,
1308                            SkRegion::Op op,
1309                            ClipEdgeStyle edgeStyle) SK_OVERRIDE {
1310        fClipCount += 1;
1311        this->INHERITED::onClipRect(r, op, edgeStyle);
1312    }
1313
1314    virtual void onClipRRect(const SkRRect& rrect,
1315                             SkRegion::Op op,
1316                             ClipEdgeStyle edgeStyle)SK_OVERRIDE {
1317        fClipCount += 1;
1318        this->INHERITED::onClipRRect(rrect, op, edgeStyle);
1319    }
1320
1321    virtual void onClipPath(const SkPath& path,
1322                            SkRegion::Op op,
1323                            ClipEdgeStyle edgeStyle) SK_OVERRIDE {
1324        fClipCount += 1;
1325        this->INHERITED::onClipPath(path, op, edgeStyle);
1326    }
1327
1328    virtual void onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) SK_OVERRIDE {
1329        fClipCount += 1;
1330        this->INHERITED::onClipRegion(deviceRgn, op);
1331    }
1332
1333    unsigned getClipCount() const { return fClipCount; }
1334
1335private:
1336    unsigned fClipCount;
1337
1338    typedef SkCanvas INHERITED;
1339};
1340
1341static void test_clip_expansion(skiatest::Reporter* reporter) {
1342    SkPictureRecorder recorder;
1343    SkCanvas* canvas = recorder.beginRecording(10, 10, NULL, 0);
1344
1345    canvas->clipRect(SkRect::MakeEmpty(), SkRegion::kReplace_Op);
1346    // The following expanding clip should not be skipped.
1347    canvas->clipRect(SkRect::MakeXYWH(4, 4, 3, 3), SkRegion::kUnion_Op);
1348    // Draw something so the optimizer doesn't just fold the world.
1349    SkPaint p;
1350    p.setColor(SK_ColorBLUE);
1351    canvas->drawPaint(p);
1352    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1353
1354    ClipCountingCanvas testCanvas(10, 10);
1355    picture->draw(&testCanvas);
1356
1357    // Both clips should be present on playback.
1358    REPORTER_ASSERT(reporter, testCanvas.getClipCount() == 2);
1359}
1360
1361static void test_hierarchical(skiatest::Reporter* reporter) {
1362    SkBitmap bm;
1363    make_bm(&bm, 10, 10, SK_ColorRED, true);
1364
1365    SkPictureRecorder recorder;
1366
1367    recorder.beginRecording(10, 10, NULL, 0);
1368    SkAutoTUnref<SkPicture> childPlain(recorder.endRecording());
1369    REPORTER_ASSERT(reporter, !childPlain->willPlayBackBitmaps()); // 0
1370
1371    recorder.beginRecording(10, 10, NULL, 0)->drawBitmap(bm, 0, 0);
1372    SkAutoTUnref<SkPicture> childWithBitmap(recorder.endRecording());
1373    REPORTER_ASSERT(reporter, childWithBitmap->willPlayBackBitmaps()); // 1
1374
1375    {
1376        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL, 0);
1377        canvas->drawPicture(*childPlain);
1378        SkAutoTUnref<SkPicture> parentPP(recorder.endRecording());
1379        REPORTER_ASSERT(reporter, !parentPP->willPlayBackBitmaps()); // 0
1380    }
1381    {
1382        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL, 0);
1383        canvas->drawPicture(*childWithBitmap);
1384        SkAutoTUnref<SkPicture> parentPWB(recorder.endRecording());
1385        REPORTER_ASSERT(reporter, parentPWB->willPlayBackBitmaps()); // 1
1386    }
1387    {
1388        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL, 0);
1389        canvas->drawBitmap(bm, 0, 0);
1390        canvas->drawPicture(*childPlain);
1391        SkAutoTUnref<SkPicture> parentWBP(recorder.endRecording());
1392        REPORTER_ASSERT(reporter, parentWBP->willPlayBackBitmaps()); // 1
1393    }
1394    {
1395        SkCanvas* canvas = recorder.beginRecording(10, 10, NULL, 0);
1396        canvas->drawBitmap(bm, 0, 0);
1397        canvas->drawPicture(*childWithBitmap);
1398        SkAutoTUnref<SkPicture> parentWBWB(recorder.endRecording());
1399        REPORTER_ASSERT(reporter, parentWBWB->willPlayBackBitmaps()); // 2
1400    }
1401}
1402
1403static void test_gen_id(skiatest::Reporter* reporter) {
1404
1405    SkPicture empty;
1406
1407    // Empty pictures should still have a valid ID
1408    REPORTER_ASSERT(reporter, empty.uniqueID() != SK_InvalidGenID);
1409
1410    SkPictureRecorder recorder;
1411
1412    SkCanvas* canvas = recorder.beginRecording(1, 1, NULL, 0);
1413    canvas->drawARGB(255, 255, 255, 255);
1414    SkAutoTUnref<SkPicture> hasData(recorder.endRecording());
1415    // picture should have a non-zero id after recording
1416    REPORTER_ASSERT(reporter, hasData->uniqueID() != SK_InvalidGenID);
1417
1418    // both pictures should have different ids
1419    REPORTER_ASSERT(reporter, hasData->uniqueID() != empty.uniqueID());
1420
1421    // test out copy constructor
1422    SkPicture copyWithData(*hasData);
1423    REPORTER_ASSERT(reporter, hasData->uniqueID() == copyWithData.uniqueID());
1424
1425    SkPicture emptyCopy(empty);
1426    REPORTER_ASSERT(reporter, empty.uniqueID() != emptyCopy.uniqueID());
1427
1428    // test out swap
1429    {
1430        SkPicture swapWithData;
1431        uint32_t beforeID1 = swapWithData.uniqueID();
1432        uint32_t beforeID2 = copyWithData.uniqueID();
1433        swapWithData.swap(copyWithData);
1434        REPORTER_ASSERT(reporter, copyWithData.uniqueID() == beforeID1);
1435        REPORTER_ASSERT(reporter, swapWithData.uniqueID() == beforeID2);
1436    }
1437
1438    // test out clone
1439    {
1440        SkAutoTUnref<SkPicture> cloneWithData(hasData->clone());
1441        REPORTER_ASSERT(reporter, hasData->uniqueID() == cloneWithData->uniqueID());
1442
1443        SkAutoTUnref<SkPicture> emptyClone(empty.clone());
1444        REPORTER_ASSERT(reporter, empty.uniqueID() != emptyClone->uniqueID());
1445    }
1446}
1447
1448DEF_TEST(Picture, reporter) {
1449#ifdef SK_DEBUG
1450    test_deleting_empty_playback();
1451    test_serializing_empty_picture();
1452#else
1453    test_bad_bitmap();
1454#endif
1455    test_unbalanced_save_restores(reporter);
1456    test_peephole();
1457#if SK_SUPPORT_GPU
1458    test_gpu_veto(reporter);
1459#endif
1460    test_gatherpixelrefs(reporter);
1461    test_gatherpixelrefsandrects(reporter);
1462    test_bitmap_with_encoded_data(reporter);
1463    test_clone_empty(reporter);
1464    test_draw_empty(reporter);
1465    test_clip_bound_opt(reporter);
1466    test_clip_expansion(reporter);
1467    test_hierarchical(reporter);
1468    test_gen_id(reporter);
1469}
1470
1471#if SK_SUPPORT_GPU
1472DEF_GPUTEST(GPUPicture, reporter, factory) {
1473    test_gpu_picture_optimization(reporter, factory);
1474}
1475#endif
1476
1477static void draw_bitmaps(const SkBitmap bitmap, SkCanvas* canvas) {
1478    const SkPaint paint;
1479    const SkRect rect = { 5.0f, 5.0f, 8.0f, 8.0f };
1480    const SkIRect irect =  { 2, 2, 3, 3 };
1481
1482    // Don't care what these record, as long as they're legal.
1483    canvas->drawBitmap(bitmap, 0.0f, 0.0f, &paint);
1484    canvas->drawBitmapRectToRect(bitmap, &rect, rect, &paint, SkCanvas::kNone_DrawBitmapRectFlag);
1485    canvas->drawBitmapMatrix(bitmap, SkMatrix::I(), &paint);
1486    canvas->drawBitmapNine(bitmap, irect, rect, &paint);
1487    canvas->drawSprite(bitmap, 1, 1);
1488}
1489
1490static void test_draw_bitmaps(SkCanvas* canvas) {
1491    SkBitmap empty;
1492    draw_bitmaps(empty, canvas);
1493    empty.setConfig(SkImageInfo::MakeN32Premul(10, 10));
1494    draw_bitmaps(empty, canvas);
1495}
1496
1497DEF_TEST(Picture_EmptyBitmap, r) {
1498    SkPictureRecorder recorder;
1499    test_draw_bitmaps(recorder.beginRecording(10, 10, NULL, 0));
1500    SkAutoTUnref<SkPicture> picture(recorder.endRecording());
1501}
1502
1503DEF_TEST(Canvas_EmptyBitmap, r) {
1504    SkBitmap dst;
1505    dst.allocN32Pixels(10, 10);
1506    SkCanvas canvas(dst);
1507
1508    test_draw_bitmaps(&canvas);
1509}
1510