| 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 "SkBlurMaskFilter.h" | 10 #include "SkBlurMaskFilter.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // performance in this case. | 23 // performance in this case. |
| 24 class BlurRoundRectBench : public Benchmark { | 24 class BlurRoundRectBench : public Benchmark { |
| 25 public: | 25 public: |
| 26 BlurRoundRectBench(int width, int height, int cornerRadius) | 26 BlurRoundRectBench(int width, int height, int cornerRadius) |
| 27 : fName("blurroundrect") { | 27 : fName("blurroundrect") { |
| 28 fName.appendf("_WH[%ix%i]_cr[%i]", width, height, cornerRadius); | 28 fName.appendf("_WH[%ix%i]_cr[%i]", width, height, cornerRadius); |
| 29 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); | 29 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
| 30 fRRect.setRectXY(r, SkIntToScalar(cornerRadius), SkIntToScalar(cornerRad
ius)); | 30 fRRect.setRectXY(r, SkIntToScalar(cornerRadius), SkIntToScalar(cornerRad
ius)); |
| 31 } | 31 } |
| 32 | 32 |
| 33 virtual const char* onGetName() SK_OVERRIDE { | 33 const char* onGetName() SK_OVERRIDE { |
| 34 return fName.c_str(); | 34 return fName.c_str(); |
| 35 } | 35 } |
| 36 | 36 |
| 37 virtual SkIPoint onGetSize() SK_OVERRIDE { | 37 SkIPoint onGetSize() SK_OVERRIDE { |
| 38 return SkIPoint::Make(SkScalarCeilToInt(fRRect.rect().width()), | 38 return SkIPoint::Make(SkScalarCeilToInt(fRRect.rect().width()), |
| 39 SkScalarCeilToInt(fRRect.rect().height())); | 39 SkScalarCeilToInt(fRRect.rect().height())); |
| 40 } | 40 } |
| 41 | 41 |
| 42 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE { | 42 void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE { |
| 43 SkLayerDrawLooper::Builder looperBuilder; | 43 SkLayerDrawLooper::Builder looperBuilder; |
| 44 { | 44 { |
| 45 SkLayerDrawLooper::LayerInfo info; | 45 SkLayerDrawLooper::LayerInfo info; |
| 46 info.fPaintBits = SkLayerDrawLooper::kMaskFilter_Bit | 46 info.fPaintBits = SkLayerDrawLooper::kMaskFilter_Bit |
| 47 | SkLayerDrawLooper::kColorFilter_Bit; | 47 | SkLayerDrawLooper::kColorFilter_Bit; |
| 48 info.fColorMode = SkXfermode::kSrc_Mode; | 48 info.fColorMode = SkXfermode::kSrc_Mode; |
| 49 info.fOffset = SkPoint::Make(SkIntToScalar(-1), SkIntToScalar(0)); | 49 info.fOffset = SkPoint::Make(SkIntToScalar(-1), SkIntToScalar(0)); |
| 50 info.fPostTranslate = false; | 50 info.fPostTranslate = false; |
| 51 SkPaint* paint = looperBuilder.addLayerOnTop(info); | 51 SkPaint* paint = looperBuilder.addLayerOnTop(info); |
| 52 SkMaskFilter* maskFilter = SkBlurMaskFilter::Create( | 52 SkMaskFilter* maskFilter = SkBlurMaskFilter::Create( |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 typedef Benchmark INHERITED; | 84 typedef Benchmark INHERITED; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 // Create one with dimensions/rounded corners based on the skp | 87 // Create one with dimensions/rounded corners based on the skp |
| 88 DEF_BENCH(return new BlurRoundRectBench(600, 5514, 6);) | 88 DEF_BENCH(return new BlurRoundRectBench(600, 5514, 6);) |
| 89 // Same radii, much smaller rectangle | 89 // Same radii, much smaller rectangle |
| 90 DEF_BENCH(return new BlurRoundRectBench(100, 100, 6);) | 90 DEF_BENCH(return new BlurRoundRectBench(100, 100, 6);) |
| 91 // Other radii options | 91 // Other radii options |
| 92 DEF_BENCH(return new BlurRoundRectBench(100, 100, 30);) | 92 DEF_BENCH(return new BlurRoundRectBench(100, 100, 30);) |
| 93 DEF_BENCH(return new BlurRoundRectBench(100, 100, 90);) | 93 DEF_BENCH(return new BlurRoundRectBench(100, 100, 90);) |
| OLD | NEW |