blob: affed723d9a7550777678d09d66738182748c749 [file] [log] [blame]
reed@google.com3d407a12012-10-12 14:42:38 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8#include "SkBenchmark.h"
9#include "SkBitmap.h"
10#include "SkPaint.h"
11#include "SkCanvas.h"
12#include "SkColorPriv.h"
13#include "SkRandom.h"
14#include "SkString.h"
15
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000016static void draw_into_bitmap(const SkBitmap& bm) {
reed@google.com3d407a12012-10-12 14:42:38 +000017 const int w = bm.width();
18 const int h = bm.height();
19
20 SkCanvas canvas(bm);
21 SkPaint p;
22 p.setAntiAlias(true);
23 p.setColor(SK_ColorRED);
24 canvas.drawCircle(SkIntToScalar(w)/2, SkIntToScalar(h)/2,
25 SkIntToScalar(SkMin32(w, h))*3/8, p);
26
27 SkRect r;
28 r.set(0, 0, SkIntToScalar(w), SkIntToScalar(h));
29 p.setStyle(SkPaint::kStroke_Style);
30 p.setStrokeWidth(SkIntToScalar(4));
31 p.setColor(SK_ColorBLUE);
32 canvas.drawRect(r, p);
33}
34
35/* Variants for bitmaprect
36 src : entire bitmap, subset, fractional subset
37 dst : same size as src, diff size
38 paint : filter-p
39 */
40
41class BitmapRectBench : public SkBenchmark {
reed@google.com44699382013-10-31 17:28:30 +000042 SkBitmap fBitmap;
43 bool fSlightMatrix;
44 uint8_t fAlpha;
45 SkPaint::FilterLevel fFilterLevel;
46 SkString fName;
47 SkRect fSrcR, fDstR;
48
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000049 static const int kWidth = 128;
50 static const int kHeight = 128;
reed@google.com3d407a12012-10-12 14:42:38 +000051public:
reed@google.com44699382013-10-31 17:28:30 +000052 BitmapRectBench(U8CPU alpha, SkPaint::FilterLevel filterLevel,
53 bool slightMatrix) {
reed@google.comb8b92ea2012-10-16 15:57:13 +000054 fAlpha = SkToU8(alpha);
reed@google.com44699382013-10-31 17:28:30 +000055 fFilterLevel = filterLevel;
reed@google.com93182312013-01-15 20:21:19 +000056 fSlightMatrix = slightMatrix;
reed@google.comb8b92ea2012-10-16 15:57:13 +000057
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000058 fBitmap.setConfig(SkBitmap::kARGB_8888_Config, kWidth, kHeight);
reed@google.com3d407a12012-10-12 14:42:38 +000059 }
60
61protected:
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000062 virtual const char* onGetName() SK_OVERRIDE {
reed@google.com93182312013-01-15 20:21:19 +000063 fName.printf("bitmaprect_%02X_%sfilter_%s",
reed@google.com44699382013-10-31 17:28:30 +000064 fAlpha,
65 SkPaint::kNone_FilterLevel == fFilterLevel ? "no" : "",
reed@google.com93182312013-01-15 20:21:19 +000066 fSlightMatrix ? "trans" : "identity");
reed@google.com3d407a12012-10-12 14:42:38 +000067 return fName.c_str();
68 }
69
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000070 virtual void onPreDraw() SK_OVERRIDE {
71 fBitmap.allocPixels();
reed@google.com383a6972013-10-21 14:00:07 +000072 fBitmap.setAlphaType(kOpaque_SkAlphaType);
commit-bot@chromium.org7fb83c82013-08-01 15:58:07 +000073 fBitmap.eraseColor(SK_ColorBLACK);
74 draw_into_bitmap(fBitmap);
75
76 fSrcR.iset(0, 0, kWidth, kHeight);
77 fDstR.iset(0, 0, kWidth, kHeight);
78
79 if (fSlightMatrix) {
80 // want fractional translate
81 fDstR.offset(SK_Scalar1 / 3, SK_Scalar1 * 5 / 7);
82 // want enough to create a scale matrix, but not enough to scare
83 // off our sniffer which tries to see if the matrix is "effectively"
84 // translate-only.
85 fDstR.fRight += SK_Scalar1 / (kWidth * 60);
86 }
87 }
88
89
commit-bot@chromium.org33614712013-12-03 18:17:16 +000090 virtual void onDraw(const int loops, SkCanvas* canvas) SK_OVERRIDE {
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +000091 SkRandom rand;
reed@google.com3d407a12012-10-12 14:42:38 +000092
93 SkPaint paint;
94 this->setupPaint(&paint);
reed@google.com44699382013-10-31 17:28:30 +000095 paint.setFilterLevel(fFilterLevel);
reed@google.comb8b92ea2012-10-16 15:57:13 +000096 paint.setAlpha(fAlpha);
reed@google.com3d407a12012-10-12 14:42:38 +000097
commit-bot@chromium.org33614712013-12-03 18:17:16 +000098 for (int i = 0; i < loops; i++) {
reed@google.com3d407a12012-10-12 14:42:38 +000099 canvas->drawBitmapRectToRect(fBitmap, &fSrcR, fDstR, &paint);
100 }
101 }
102
103private:
104 typedef SkBenchmark INHERITED;
105};
106
reed@google.com44699382013-10-31 17:28:30 +0000107DEF_BENCH(return new BitmapRectBench(0xFF, SkPaint::kNone_FilterLevel, false))
108DEF_BENCH(return new BitmapRectBench(0x80, SkPaint::kNone_FilterLevel, false))
109DEF_BENCH(return new BitmapRectBench(0xFF, SkPaint::kLow_FilterLevel, false))
110DEF_BENCH(return new BitmapRectBench(0x80, SkPaint::kLow_FilterLevel, false))
reed@google.com93182312013-01-15 20:21:19 +0000111
reed@google.com44699382013-10-31 17:28:30 +0000112DEF_BENCH(return new BitmapRectBench(0xFF, SkPaint::kNone_FilterLevel, true))
113DEF_BENCH(return new BitmapRectBench(0xFF, SkPaint::kLow_FilterLevel, true))