blob: f6bc0e4ccca34e6bca88336966a92287ce6f980a [file] [log] [blame]
sugoi@google.com5d71adf2013-04-24 19:36:44 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkBenchmark.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00009#include "SkBitmapDevice.h"
sugoi@google.com5d71adf2013-04-24 19:36:44 +000010#include "SkBlurImageFilter.h"
11#include "SkCanvas.h"
sugoi@google.com5d71adf2013-04-24 19:36:44 +000012#include "SkPaint.h"
13#include "SkRandom.h"
14#include "SkShader.h"
15#include "SkString.h"
16
17#define FILTER_WIDTH_SMALL 32
18#define FILTER_HEIGHT_SMALL 32
19#define FILTER_WIDTH_LARGE 256
20#define FILTER_HEIGHT_LARGE 256
21#define BLUR_SIGMA_SMALL SkFloatToScalar(1.0f)
22#define BLUR_SIGMA_LARGE SkFloatToScalar(10.0f)
23
24class BlurImageFilterBench : public SkBenchmark {
25public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000026 BlurImageFilterBench(SkScalar sigmaX, SkScalar sigmaY, bool small) :
27 fIsSmall(small), fInitialized(false), fSigmaX(sigmaX), fSigmaY(sigmaY) {
sugoi@google.com5d71adf2013-04-24 19:36:44 +000028 fName.printf("blur_image_filter_%s_%.2f_%.2f", fIsSmall ? "small" : "large",
29 SkScalarToFloat(sigmaX), SkScalarToFloat(sigmaY));
30 }
31
32protected:
33 virtual const char* onGetName() SK_OVERRIDE {
34 return fName.c_str();
35 }
36
37 virtual void onPreDraw() SK_OVERRIDE {
38 if (!fInitialized) {
39 make_checkerboard();
40 fInitialized = true;
41 }
42 }
43
44 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
45 SkPaint paint;
46 paint.setImageFilter(new SkBlurImageFilter(fSigmaX, fSigmaY))->unref();
mtklein@google.comc2897432013-09-10 19:23:38 +000047
48 for (int i = 0; i < this->getLoops(); i++) {
49 canvas->drawBitmap(fCheckerboard, 0, 0, &paint);
50 }
sugoi@google.com5d71adf2013-04-24 19:36:44 +000051 }
52
53private:
54 void make_checkerboard() {
55 const int w = fIsSmall ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
56 const int h = fIsSmall ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE;
57 fCheckerboard.setConfig(SkBitmap::kARGB_8888_Config, w, h);
58 fCheckerboard.allocPixels();
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000059 SkBitmapDevice device(fCheckerboard);
sugoi@google.com5d71adf2013-04-24 19:36:44 +000060 SkCanvas canvas(&device);
61 canvas.clear(0x00000000);
62 SkPaint darkPaint;
63 darkPaint.setColor(0xFF804020);
64 SkPaint lightPaint;
65 lightPaint.setColor(0xFF244484);
66 for (int y = 0; y < h; y += 16) {
67 for (int x = 0; x < w; x += 16) {
68 canvas.save();
69 canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
70 canvas.drawRect(SkRect::MakeXYWH(0, 0, 8, 8), darkPaint);
71 canvas.drawRect(SkRect::MakeXYWH(8, 0, 8, 8), lightPaint);
72 canvas.drawRect(SkRect::MakeXYWH(0, 8, 8, 8), lightPaint);
73 canvas.drawRect(SkRect::MakeXYWH(8, 8, 8, 8), darkPaint);
74 canvas.restore();
75 }
76 }
77 }
78
79 SkString fName;
80 bool fIsSmall;
81 bool fInitialized;
82 SkBitmap fCheckerboard;
83 SkScalar fSigmaX, fSigmaY;
84 typedef SkBenchmark INHERITED;
85};
86
mtklein@google.com410e6e82013-09-13 19:52:27 +000087DEF_BENCH(return new BlurImageFilterBench(BLUR_SIGMA_SMALL, BLUR_SIGMA_SMALL, true);)
88DEF_BENCH(return new BlurImageFilterBench(BLUR_SIGMA_SMALL, BLUR_SIGMA_SMALL, false);)
89DEF_BENCH(return new BlurImageFilterBench(BLUR_SIGMA_LARGE, BLUR_SIGMA_LARGE, true);)
90DEF_BENCH(return new BlurImageFilterBench(BLUR_SIGMA_LARGE, BLUR_SIGMA_LARGE, false);)