OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 #include "Benchmark.h" | 8 #include "Benchmark.h" |
9 #include "SkBitmap.h" | 9 #include "SkBitmap.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 protected: | 61 protected: |
62 const char* onGetName() override { | 62 const char* onGetName() override { |
63 fName.printf("bitmaprect_%02X_%sfilter_%s", | 63 fName.printf("bitmaprect_%02X_%sfilter_%s", |
64 fAlpha, | 64 fAlpha, |
65 kNone_SkFilterQuality == fFilterQuality ? "no" : "", | 65 kNone_SkFilterQuality == fFilterQuality ? "no" : "", |
66 fSlightMatrix ? "trans" : "identity"); | 66 fSlightMatrix ? "trans" : "identity"); |
67 return fName.c_str(); | 67 return fName.c_str(); |
68 } | 68 } |
69 | 69 |
70 void onPreDraw() override { | 70 void onDelayedSetup() override { |
71 fBitmap.allocPixels(); | 71 fBitmap.allocPixels(); |
72 fBitmap.setAlphaType(kOpaque_SkAlphaType); | 72 fBitmap.setAlphaType(kOpaque_SkAlphaType); |
73 fBitmap.eraseColor(SK_ColorBLACK); | 73 fBitmap.eraseColor(SK_ColorBLACK); |
74 draw_into_bitmap(fBitmap); | 74 draw_into_bitmap(fBitmap); |
75 | 75 |
76 fSrcR.iset(0, 0, kWidth, kHeight); | 76 fSrcR.iset(0, 0, kWidth, kHeight); |
77 fDstR.iset(0, 0, kWidth, kHeight); | 77 fDstR.iset(0, 0, kWidth, kHeight); |
78 | 78 |
79 if (fSlightMatrix) { | 79 if (fSlightMatrix) { |
80 // want fractional translate | 80 // want fractional translate |
(...skipping 24 matching lines...) Expand all Loading... |
105 typedef Benchmark INHERITED; | 105 typedef Benchmark INHERITED; |
106 }; | 106 }; |
107 | 107 |
108 DEF_BENCH(return new BitmapRectBench(0xFF, kNone_SkFilterQuality, false)) | 108 DEF_BENCH(return new BitmapRectBench(0xFF, kNone_SkFilterQuality, false)) |
109 DEF_BENCH(return new BitmapRectBench(0x80, kNone_SkFilterQuality, false)) | 109 DEF_BENCH(return new BitmapRectBench(0x80, kNone_SkFilterQuality, false)) |
110 DEF_BENCH(return new BitmapRectBench(0xFF, kLow_SkFilterQuality, false)) | 110 DEF_BENCH(return new BitmapRectBench(0xFF, kLow_SkFilterQuality, false)) |
111 DEF_BENCH(return new BitmapRectBench(0x80, kLow_SkFilterQuality, false)) | 111 DEF_BENCH(return new BitmapRectBench(0x80, kLow_SkFilterQuality, false)) |
112 | 112 |
113 DEF_BENCH(return new BitmapRectBench(0xFF, kNone_SkFilterQuality, true)) | 113 DEF_BENCH(return new BitmapRectBench(0xFF, kNone_SkFilterQuality, true)) |
114 DEF_BENCH(return new BitmapRectBench(0xFF, kLow_SkFilterQuality, true)) | 114 DEF_BENCH(return new BitmapRectBench(0xFF, kLow_SkFilterQuality, true)) |
OLD | NEW |