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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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);) |
| 113 |
| 114 ////////////////////////////////////////////////////////////////////////////////
/////////////// |
| 115 |
| 116 #include "SkBitmapScaler.h" |
| 117 |
| 118 class PixmapScalerBench: public Benchmark { |
| 119 SkBitmapScaler::ResizeMethod fMethod; |
| 120 SkString fName; |
| 121 SkBitmap fSrc, fDst; |
| 122 |
| 123 public: |
| 124 PixmapScalerBench(SkBitmapScaler::ResizeMethod method, const char suffix[])
: fMethod(method) { |
| 125 fName.printf("pixmapscaler_%s", suffix); |
| 126 } |
| 127 |
| 128 protected: |
| 129 const char* onGetName() override { |
| 130 return fName.c_str(); |
| 131 } |
| 132 |
| 133 SkIPoint onGetSize() override { return{ 100, 100 }; } |
| 134 |
| 135 bool isSuitableFor(Backend backend) override { |
| 136 return backend == kNonRendering_Backend; |
| 137 } |
| 138 |
| 139 void onDelayedSetup() override { |
| 140 fSrc.allocN32Pixels(640, 480); |
| 141 fDst.allocN32Pixels(300, 250); |
| 142 } |
| 143 |
| 144 void onDraw(int loops, SkCanvas*) override { |
| 145 SkPixmap src, dst; |
| 146 fSrc.peekPixels(&src); |
| 147 fDst.peekPixels(&dst); |
| 148 for (int i = 0; i < loops * 16; i++) { |
| 149 SkBitmapScaler::Resize(dst, src, fMethod); |
| 150 } |
| 151 } |
| 152 |
| 153 private: |
| 154 typedef Benchmark INHERITED; |
| 155 }; |
| 156 DEF_BENCH( return new PixmapScalerBench(SkBitmapScaler::RESIZE_LANCZOS3, "lanczo
s"); ) |
| 157 DEF_BENCH( return new PixmapScalerBench(SkBitmapScaler::RESIZE_MITCHELL, "mitche
ll"); ) |
| 158 DEF_BENCH( return new PixmapScalerBench(SkBitmapScaler::RESIZE_HAMMING, "hammin
g"); ) |
| 159 DEF_BENCH( return new PixmapScalerBench(SkBitmapScaler::RESIZE_TRIANGLE, "triang
le"); ) |
| 160 DEF_BENCH( return new PixmapScalerBench(SkBitmapScaler::RESIZE_BOX, "box");
) |
OLD | NEW |