OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2013 Google Inc. | 2 * Copyright 2013 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "Benchmark.h" | 8 #include "Benchmark.h" |
9 #include "SkBitmapSource.h" | |
10 #include "SkCanvas.h" | 9 #include "SkCanvas.h" |
10 #include "SkImageSource.h" | |
11 #include "SkMergeImageFilter.h" | 11 #include "SkMergeImageFilter.h" |
12 #include "SkSurface.h" | |
12 | 13 |
13 #define FILTER_WIDTH_SMALL SkIntToScalar(32) | 14 #define FILTER_WIDTH_SMALL SkIntToScalar(32) |
14 #define FILTER_HEIGHT_SMALL SkIntToScalar(32) | 15 #define FILTER_HEIGHT_SMALL SkIntToScalar(32) |
15 #define FILTER_WIDTH_LARGE SkIntToScalar(256) | 16 #define FILTER_WIDTH_LARGE SkIntToScalar(256) |
16 #define FILTER_HEIGHT_LARGE SkIntToScalar(256) | 17 #define FILTER_HEIGHT_LARGE SkIntToScalar(256) |
17 | 18 |
18 class MergeBench : public Benchmark { | 19 class MergeBench : public Benchmark { |
19 public: | 20 public: |
20 MergeBench(bool small) : fIsSmall(small), fInitialized(false) { } | 21 MergeBench(bool small) : fIsSmall(small), fInitialized(false) { } |
21 | 22 |
(...skipping 15 matching lines...) Expand all Loading... | |
37 SkRect::MakeWH(FILTER_WIDTH_LARGE, FILTER_HEIGHT_L ARGE); | 38 SkRect::MakeWH(FILTER_WIDTH_LARGE, FILTER_HEIGHT_L ARGE); |
38 SkPaint paint; | 39 SkPaint paint; |
39 paint.setImageFilter(mergeBitmaps())->unref(); | 40 paint.setImageFilter(mergeBitmaps())->unref(); |
40 for (int i = 0; i < loops; i++) { | 41 for (int i = 0; i < loops; i++) { |
41 canvas->drawRect(r, paint); | 42 canvas->drawRect(r, paint); |
42 } | 43 } |
43 } | 44 } |
44 | 45 |
45 private: | 46 private: |
46 SkImageFilter* mergeBitmaps() { | 47 SkImageFilter* mergeBitmaps() { |
47 SkImageFilter* first = SkBitmapSource::Create(fCheckerboard); | 48 SkAutoTUnref<SkImageFilter> first(SkImageSource::Create(fCheckerboard)); |
48 SkImageFilter* second = SkBitmapSource::Create(fBitmap); | 49 SkAutoTUnref<SkImageFilter> second(SkImageSource::Create(fBitmap)); |
49 SkAutoUnref aur0(first); | |
50 SkAutoUnref aur1(second); | |
51 return SkMergeImageFilter::Create(first, second); | 50 return SkMergeImageFilter::Create(first, second); |
52 } | 51 } |
53 | 52 |
54 void make_bitmap() { | 53 void make_bitmap() { |
55 fBitmap.allocN32Pixels(80, 80); | 54 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(80, 80)); |
56 SkCanvas canvas(fBitmap); | 55 surface->getCanvas()->clear(0x00000000); |
57 canvas.clear(0x00000000); | |
58 SkPaint paint; | 56 SkPaint paint; |
59 paint.setAntiAlias(true); | 57 paint.setAntiAlias(true); |
60 paint.setColor(0xFF884422); | 58 paint.setColor(0xFF884422); |
61 paint.setTextSize(SkIntToScalar(96)); | 59 paint.setTextSize(SkIntToScalar(96)); |
62 const char* str = "g"; | 60 const char* str = "g"; |
63 canvas.drawText(str, strlen(str), SkIntToScalar(15), SkIntToScalar(55), paint); | 61 surface->getCanvas()->drawText(str, strlen(str), 15, 55, paint); |
62 fBitmap.reset(surface->newImageSnapshot()); | |
64 } | 63 } |
65 | 64 |
66 void make_checkerboard() { | 65 void make_checkerboard() { |
67 fCheckerboard.allocN32Pixels(80, 80); | 66 SkAutoTUnref<SkSurface> surface(SkSurface::NewRasterN32Premul(80, 80)); |
robertphillips
2015/09/15 17:43:52
"SkCanvas* canvas = surface->getCanvas();" here an
f(malita)
2015/09/15 18:12:53
Done.
| |
68 SkCanvas canvas(fCheckerboard); | 67 surface->getCanvas()->clear(0x00000000); |
69 canvas.clear(0x00000000); | |
70 SkPaint darkPaint; | 68 SkPaint darkPaint; |
71 darkPaint.setColor(0xFF804020); | 69 darkPaint.setColor(0xFF804020); |
72 SkPaint lightPaint; | 70 SkPaint lightPaint; |
73 lightPaint.setColor(0xFF244484); | 71 lightPaint.setColor(0xFF244484); |
72 SkCanvas* canvas = surface->getCanvas(); | |
74 for (int y = 0; y < 80; y += 16) { | 73 for (int y = 0; y < 80; y += 16) { |
75 for (int x = 0; x < 80; x += 16) { | 74 for (int x = 0; x < 80; x += 16) { |
76 canvas.save(); | 75 canvas->save(); |
77 canvas.translate(SkIntToScalar(x), SkIntToScalar(y)); | 76 canvas->translate(SkIntToScalar(x), SkIntToScalar(y)); |
78 canvas.drawRect(SkRect::MakeXYWH(0, 0, 8, 8), darkPaint); | 77 canvas->drawRect(SkRect::MakeXYWH(0, 0, 8, 8), darkPaint); |
79 canvas.drawRect(SkRect::MakeXYWH(8, 0, 8, 8), lightPaint); | 78 canvas->drawRect(SkRect::MakeXYWH(8, 0, 8, 8), lightPaint); |
80 canvas.drawRect(SkRect::MakeXYWH(0, 8, 8, 8), lightPaint); | 79 canvas->drawRect(SkRect::MakeXYWH(0, 8, 8, 8), lightPaint); |
81 canvas.drawRect(SkRect::MakeXYWH(8, 8, 8, 8), darkPaint); | 80 canvas->drawRect(SkRect::MakeXYWH(8, 8, 8, 8), darkPaint); |
82 canvas.restore(); | 81 canvas->restore(); |
83 } | 82 } |
84 } | 83 } |
84 | |
85 fCheckerboard.reset(surface->newImageSnapshot()); | |
85 } | 86 } |
86 | 87 |
87 bool fIsSmall; | 88 bool fIsSmall; |
88 bool fInitialized; | 89 bool fInitialized; |
robertphillips
2015/09/15 17:43:52
fBitmap -> fImage ?
fBigGImage ?
f(malita)
2015/09/15 18:12:53
Done.
| |
89 SkBitmap fBitmap, fCheckerboard; | 90 SkAutoTUnref<SkImage> fBitmap, fCheckerboard; |
90 | 91 |
91 typedef Benchmark INHERITED; | 92 typedef Benchmark INHERITED; |
92 }; | 93 }; |
93 | 94 |
94 /////////////////////////////////////////////////////////////////////////////// | 95 /////////////////////////////////////////////////////////////////////////////// |
95 | 96 |
96 DEF_BENCH( return new MergeBench(true); ) | 97 DEF_BENCH( return new MergeBench(true); ) |
97 DEF_BENCH( return new MergeBench(false); ) | 98 DEF_BENCH( return new MergeBench(false); ) |
OLD | NEW |