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 "SkBlurMask.h" | 9 #include "SkBlurMask.h" |
10 #include "SkCanvas.h" | 10 #include "SkCanvas.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 } | 41 } |
42 | 42 |
43 int outputSize() const { | 43 int outputSize() const { |
44 return fOutputSize; | 44 return fOutputSize; |
45 } | 45 } |
46 | 46 |
47 float scale() const { | 47 float scale() const { |
48 return float(outputSize())/inputSize(); | 48 return float(outputSize())/inputSize(); |
49 } | 49 } |
50 | 50 |
51 SkIPoint onGetSize() SK_OVERRIDE { | 51 SkIPoint onGetSize() override { |
52 return SkIPoint::Make( fOutputSize, fOutputSize ); | 52 return SkIPoint::Make( fOutputSize, fOutputSize ); |
53 } | 53 } |
54 | 54 |
55 void setName(const char * name) { | 55 void setName(const char * name) { |
56 fName.printf( "bitmap_scale_%s_%d_%d", name, fInputSize, fOutputSize ); | 56 fName.printf( "bitmap_scale_%s_%d_%d", name, fInputSize, fOutputSize ); |
57 } | 57 } |
58 | 58 |
59 virtual void onPreDraw() { | 59 virtual void onPreDraw() { |
60 fInputBitmap.allocN32Pixels(fInputSize, fInputSize, true); | 60 fInputBitmap.allocN32Pixels(fInputSize, fInputSize, true); |
61 fInputBitmap.eraseColor(SK_ColorWHITE); | 61 fInputBitmap.eraseColor(SK_ColorWHITE); |
(...skipping 19 matching lines...) Expand all Loading... |
81 private: | 81 private: |
82 typedef Benchmark INHERITED; | 82 typedef Benchmark INHERITED; |
83 }; | 83 }; |
84 | 84 |
85 class BitmapFilterScaleBench: public BitmapScaleBench { | 85 class BitmapFilterScaleBench: public BitmapScaleBench { |
86 public: | 86 public: |
87 BitmapFilterScaleBench( int is, int os) : INHERITED(is, os) { | 87 BitmapFilterScaleBench( int is, int os) : INHERITED(is, os) { |
88 setName( "filter" ); | 88 setName( "filter" ); |
89 } | 89 } |
90 protected: | 90 protected: |
91 void doScaleImage() SK_OVERRIDE { | 91 void doScaleImage() override { |
92 SkCanvas canvas( fOutputBitmap ); | 92 SkCanvas canvas( fOutputBitmap ); |
93 SkPaint paint; | 93 SkPaint paint; |
94 | 94 |
95 paint.setFilterQuality(kHigh_SkFilterQuality); | 95 paint.setFilterQuality(kHigh_SkFilterQuality); |
96 fInputBitmap.notifyPixelsChanged(); | 96 fInputBitmap.notifyPixelsChanged(); |
97 canvas.concat(fMatrix); | 97 canvas.concat(fMatrix); |
98 canvas.drawBitmap(fInputBitmap, 0, 0, &paint ); | 98 canvas.drawBitmap(fInputBitmap, 0, 0, &paint ); |
99 } | 99 } |
100 private: | 100 private: |
101 typedef BitmapScaleBench INHERITED; | 101 typedef BitmapScaleBench INHERITED; |
102 }; | 102 }; |
103 | 103 |
104 DEF_BENCH(return new BitmapFilterScaleBench(10, 90);) | 104 DEF_BENCH(return new BitmapFilterScaleBench(10, 90);) |
105 DEF_BENCH(return new BitmapFilterScaleBench(30, 90);) | 105 DEF_BENCH(return new BitmapFilterScaleBench(30, 90);) |
106 DEF_BENCH(return new BitmapFilterScaleBench(80, 90);) | 106 DEF_BENCH(return new BitmapFilterScaleBench(80, 90);) |
107 DEF_BENCH(return new BitmapFilterScaleBench(90, 90);) | 107 DEF_BENCH(return new BitmapFilterScaleBench(90, 90);) |
108 DEF_BENCH(return new BitmapFilterScaleBench(90, 80);) | 108 DEF_BENCH(return new BitmapFilterScaleBench(90, 80);) |
109 DEF_BENCH(return new BitmapFilterScaleBench(90, 30);) | 109 DEF_BENCH(return new BitmapFilterScaleBench(90, 30);) |
110 DEF_BENCH(return new BitmapFilterScaleBench(90, 10);) | 110 DEF_BENCH(return new BitmapFilterScaleBench(90, 10);) |
111 DEF_BENCH(return new BitmapFilterScaleBench(256, 64);) | 111 DEF_BENCH(return new BitmapFilterScaleBench(256, 64);) |
112 DEF_BENCH(return new BitmapFilterScaleBench(64, 256);) | 112 DEF_BENCH(return new BitmapFilterScaleBench(64, 256);) |
OLD | NEW |