blob: 77910c90a99ef4590852e4d119469f03265e372e [file] [log] [blame]
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +00001/*
2 * Copyright 2012 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#include "SkBenchmark.h"
8#include "SkCanvas.h"
9#include "SkPaint.h"
10#include "SkRandom.h"
11#include "SkString.h"
12#include "SkMatrixConvolutionImageFilter.h"
13
14class MatrixConvolutionBench : public SkBenchmark {
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +000015public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000016 MatrixConvolutionBench(SkMatrixConvolutionImageFilter::TileMode tileMode, bool convolveAlpha)
17 : fName("matrixconvolution") {
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +000018 SkISize kernelSize = SkISize::Make(3, 3);
19 SkScalar kernel[9] = {
20 SkIntToScalar( 1), SkIntToScalar( 1), SkIntToScalar( 1),
21 SkIntToScalar( 1), SkIntToScalar(-7), SkIntToScalar( 1),
22 SkIntToScalar( 1), SkIntToScalar( 1), SkIntToScalar( 1),
23 };
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000024 SkScalar gain = 0.3f, bias = SkIntToScalar(100);
commit-bot@chromium.org84cd0992014-03-12 16:36:08 +000025 SkIPoint kernelOffset = SkIPoint::Make(1, 1);
26 fFilter = SkMatrixConvolutionImageFilter::Create(kernelSize, kernel, gain, bias, kernelOffset, tileMode, convolveAlpha);
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +000027 }
28
29 ~MatrixConvolutionBench() {
30 fFilter->unref();
31 }
32
33protected:
34 virtual const char* onGetName() {
35 return fName.c_str();
36 }
37
commit-bot@chromium.org33614712013-12-03 18:17:16 +000038 virtual void onDraw(const int loops, SkCanvas* canvas) {
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +000039 SkPaint paint;
40 this->setupPaint(&paint);
41 paint.setAntiAlias(true);
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000042 SkRandom rand;
commit-bot@chromium.org33614712013-12-03 18:17:16 +000043 for (int i = 0; i < loops; i++) {
senorblanco@chromium.org5faa2dc2012-09-18 20:32:34 +000044 SkRect r = SkRect::MakeWH(rand.nextUScalar1() * 400,
45 rand.nextUScalar1() * 400);
46 paint.setImageFilter(fFilter);
47 canvas->drawOval(r, paint);
48 }
49 }
50
51private:
52 typedef SkBenchmark INHERITED;
53 SkMatrixConvolutionImageFilter* fFilter;
54 SkString fName;
55};
56
mtklein@google.com410e6e82013-09-13 19:52:27 +000057DEF_BENCH( return new MatrixConvolutionBench(SkMatrixConvolutionImageFilter::kClamp_TileMode, true); )
58DEF_BENCH( return new MatrixConvolutionBench(SkMatrixConvolutionImageFilter::kRepeat_TileMode, true); )
59DEF_BENCH( return new MatrixConvolutionBench(SkMatrixConvolutionImageFilter::kClampToBlack_TileMode, true); )
60DEF_BENCH( return new MatrixConvolutionBench(SkMatrixConvolutionImageFilter::kClampToBlack_TileMode, false); )