blob: b5561a22a883b29a41231e515049d773b4464a81 [file] [log] [blame]
sugoi@google.com580a1722013-04-23 14:20:45 +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#include "SkBenchmark.h"
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00008#include "SkBitmapDevice.h"
sugoi@google.com580a1722013-04-23 14:20:45 +00009#include "SkCanvas.h"
sugoi@google.com580a1722013-04-23 14:20:45 +000010#include "SkMagnifierImageFilter.h"
11#include "SkRandom.h"
12
sugoi@google.comca425d92013-04-23 14:37:38 +000013#define FILTER_WIDTH_SMALL 32
14#define FILTER_HEIGHT_SMALL 32
15#define FILTER_WIDTH_LARGE 256
16#define FILTER_HEIGHT_LARGE 256
sugoi@google.com580a1722013-04-23 14:20:45 +000017
18class MagnifierBench : public SkBenchmark {
19public:
mtklein@google.com410e6e82013-09-13 19:52:27 +000020 MagnifierBench(bool small) :
21 fIsSmall(small), fInitialized(false) {
sugoi@google.com580a1722013-04-23 14:20:45 +000022 }
23
24protected:
25 virtual const char* onGetName() SK_OVERRIDE {
26 return fIsSmall ? "magnifier_small" : "magnifier_large";
27 }
28
29 virtual void onPreDraw() SK_OVERRIDE {
30 if (!fInitialized) {
31 make_checkerboard();
32 fInitialized = true;
33 }
34 }
35
36 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
37 const int w = fIsSmall ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
38 const int h = fIsSmall ? FILTER_HEIGHT_SMALL : FILTER_HEIGHT_LARGE;
39 SkPaint paint;
40 paint.setImageFilter(
41 new SkMagnifierImageFilter(
42 SkRect::MakeXYWH(SkIntToScalar(w / 4),
43 SkIntToScalar(h / 4),
44 SkIntToScalar(w / 2),
45 SkIntToScalar(h / 2)), 100))->unref();
mtklein@google.comc2897432013-09-10 19:23:38 +000046
47 for (int i = 0; i < this->getLoops(); i++) {
48 canvas->drawBitmap(fCheckerboard, 0, 0, &paint);
49 }
sugoi@google.com580a1722013-04-23 14:20:45 +000050 }
51
52private:
53 void make_checkerboard() {
54 const int w = fIsSmall ? FILTER_WIDTH_SMALL : FILTER_WIDTH_LARGE;
55 const int h = fIsSmall ? FILTER_HEIGHT_LARGE : FILTER_HEIGHT_LARGE;
56 fCheckerboard.setConfig(SkBitmap::kARGB_8888_Config, w, h);
57 fCheckerboard.allocPixels();
robertphillips@google.com1f2f3382013-08-29 11:54:56 +000058 SkBitmapDevice device(fCheckerboard);
sugoi@google.com580a1722013-04-23 14:20:45 +000059 SkCanvas canvas(&device);
60 canvas.clear(0x00000000);
61 SkPaint darkPaint;
62 darkPaint.setColor(0xFF804020);
63 SkPaint lightPaint;
64 lightPaint.setColor(0xFF244484);
65 for (int y = 0; y < h; y += 16) {
66 for (int x = 0; x < w; x += 16) {
67 canvas.save();
68 canvas.translate(SkIntToScalar(x), SkIntToScalar(y));
69 canvas.drawRect(SkRect::MakeXYWH(0, 0, 8, 8), darkPaint);
70 canvas.drawRect(SkRect::MakeXYWH(8, 0, 8, 8), lightPaint);
71 canvas.drawRect(SkRect::MakeXYWH(0, 8, 8, 8), lightPaint);
72 canvas.drawRect(SkRect::MakeXYWH(8, 8, 8, 8), darkPaint);
73 canvas.restore();
74 }
75 }
76 }
77
78 bool fIsSmall;
79 bool fInitialized;
80 SkBitmap fCheckerboard;
81 typedef SkBenchmark INHERITED;
82};
83
84///////////////////////////////////////////////////////////////////////////////
85
mtklein@google.com410e6e82013-09-13 19:52:27 +000086DEF_BENCH( return new MagnifierBench(true); )
87DEF_BENCH( return new MagnifierBench(false); )