blob: d9b1434e57c3e236c4dc80f22c673aaccdd0ac42 [file] [log] [blame]
bsalomon@google.comfb309512011-11-30 14:13:48 +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 "gm.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +00009#include "SkBlurMask.h"
bsalomon@google.com7d30a212012-04-25 15:52:27 +000010#include "SkBlurMaskFilter.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +000011#include "SkColorPriv.h"
bsalomon@google.comfb309512011-11-30 14:13:48 +000012#include "SkGradientShader.h"
robertphillips@google.comb7061172013-09-06 14:16:12 +000013#include "SkShader.h"
bsalomon@google.comfb309512011-11-30 14:13:48 +000014
15namespace skiagm {
16
bsalomon@google.com7d30a212012-04-25 15:52:27 +000017static SkBitmap make_chessbm(int w, int h) {
18 SkBitmap bm;
reed@google.comeb9a46c2014-01-25 16:46:20 +000019 bm.allocN32Pixels(w, h);
bsalomon@google.com7d30a212012-04-25 15:52:27 +000020
21 for (int y = 0; y < bm.height(); y++) {
22 uint32_t* p = bm.getAddr32(0, y);
23 for (int x = 0; x < bm.width(); x++) {
24 p[x] = ((x + y) & 1) ? SK_ColorWHITE : SK_ColorBLACK;
25 }
26 }
27 bm.unlockPixels();
28 return bm;
29}
30
commit-bot@chromium.orgdac52252014-02-17 21:21:46 +000031static void makebm(SkBitmap* bm, int w, int h) {
32 bm->allocN32Pixels(w, h);
junov@google.comdbfac8a2012-12-06 21:47:40 +000033 bm->eraseColor(SK_ColorTRANSPARENT);
bsalomon@google.comfb309512011-11-30 14:13:48 +000034
35 SkCanvas canvas(*bm);
36
37 SkScalar wScalar = SkIntToScalar(w);
38 SkScalar hScalar = SkIntToScalar(h);
39
40 SkPoint pt = { wScalar / 2, hScalar / 2 };
41
42 SkScalar radius = 4 * SkMaxScalar(wScalar, hScalar);
43
44 SkColor colors[] = { SK_ColorRED, SK_ColorYELLOW,
45 SK_ColorGREEN, SK_ColorMAGENTA,
46 SK_ColorBLUE, SK_ColorCYAN,
47 SK_ColorRED};
48
49 SkScalar pos[] = {0,
50 SK_Scalar1 / 6,
51 2 * SK_Scalar1 / 6,
52 3 * SK_Scalar1 / 6,
53 4 * SK_Scalar1 / 6,
54 5 * SK_Scalar1 / 6,
55 SK_Scalar1};
56
57 SkPaint paint;
bsalomon@google.comfb309512011-11-30 14:13:48 +000058 SkRect rect = SkRect::MakeWH(wScalar, hScalar);
59 SkMatrix mat = SkMatrix::I();
60 for (int i = 0; i < 4; ++i) {
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +000061 paint.setShader(SkGradientShader::CreateRadial(
62 pt, radius,
63 colors, pos,
64 SK_ARRAY_COUNT(colors),
65 SkShader::kRepeat_TileMode,
commit-bot@chromium.org3339ac52014-05-22 02:55:59 +000066 NULL, 0, &mat))->unref();
bsalomon@google.comfb309512011-11-30 14:13:48 +000067 canvas.drawRect(rect, paint);
68 rect.inset(wScalar / 8, hScalar / 8);
69 mat.postScale(SK_Scalar1 / 4, SK_Scalar1 / 4);
70 }
commit-bot@chromium.org5d415072014-05-02 14:22:38 +000071 // Let backends know we won't change this, so they don't have to deep copy it defensively.
72 bm->setImmutable();
bsalomon@google.comfb309512011-11-30 14:13:48 +000073}
74
75static const int gSize = 1024;
76
77class DrawBitmapRectGM : public GM {
78public:
79 DrawBitmapRectGM() {
80 }
81
82 SkBitmap fLargeBitmap;
83
84protected:
85 SkString onShortName() {
86 return SkString("drawbitmaprect");
87 }
rmistry@google.comae933ce2012-08-23 18:19:56 +000088
bsalomon@google.comfb309512011-11-30 14:13:48 +000089 SkISize onISize() { return make_isize(gSize, gSize); }
rmistry@google.comae933ce2012-08-23 18:19:56 +000090
bsalomon@google.comfb309512011-11-30 14:13:48 +000091 virtual void onDraw(SkCanvas* canvas) {
92 static const int kBmpSize = 2048;
93 if (fLargeBitmap.isNull()) {
commit-bot@chromium.orgdac52252014-02-17 21:21:46 +000094 makebm(&fLargeBitmap, kBmpSize, kBmpSize);
bsalomon@google.comfb309512011-11-30 14:13:48 +000095 }
vandebo@chromium.org663515b2012-01-05 18:45:27 +000096 SkRect dstRect = { 0, 0, SkIntToScalar(64), SkIntToScalar(64)};
bsalomon@google.comfb309512011-11-30 14:13:48 +000097 static const int kMaxSrcRectSize = 1 << (SkNextLog2(kBmpSize) + 2);
98
99 static const int kPadX = 30;
100 static const int kPadY = 40;
101 SkPaint paint;
102 paint.setAlpha(0x20);
103 canvas->drawBitmapRect(fLargeBitmap, NULL,
104 SkRect::MakeWH(gSize * SK_Scalar1,
105 gSize * SK_Scalar1),
106 &paint);
107 canvas->translate(SK_Scalar1 * kPadX / 2,
108 SK_Scalar1 * kPadY / 2);
109 SkPaint blackPaint;
110 SkScalar titleHeight = SK_Scalar1 * 24;
111 blackPaint.setColor(SK_ColorBLACK);
112 blackPaint.setTextSize(titleHeight);
113 blackPaint.setAntiAlias(true);
114 SkString title;
115 title.printf("Bitmap size: %d x %d", kBmpSize, kBmpSize);
116 canvas->drawText(title.c_str(), title.size(), 0,
117 titleHeight, blackPaint);
118
119 canvas->translate(0, SK_Scalar1 * kPadY / 2 + titleHeight);
120 int rowCount = 0;
121 canvas->save();
122 for (int w = 1; w <= kMaxSrcRectSize; w *= 4) {
123 for (int h = 1; h <= kMaxSrcRectSize; h *= 4) {
124
125 SkIRect srcRect = SkIRect::MakeXYWH((kBmpSize - w) / 2,
126 (kBmpSize - h) / 2,
127 w, h);
128 canvas->drawBitmapRect(fLargeBitmap, &srcRect, dstRect);
129
130 SkString label;
131 label.appendf("%d x %d", w, h);
132 blackPaint.setAntiAlias(true);
133 blackPaint.setStyle(SkPaint::kFill_Style);
134 blackPaint.setTextSize(SK_Scalar1 * 10);
135 SkScalar baseline = dstRect.height() +
136 blackPaint.getTextSize() + SK_Scalar1 * 3;
137 canvas->drawText(label.c_str(), label.size(),
138 0, baseline,
139 blackPaint);
140 blackPaint.setStyle(SkPaint::kStroke_Style);
141 blackPaint.setStrokeWidth(SK_Scalar1);
142 blackPaint.setAntiAlias(false);
143 canvas->drawRect(dstRect, blackPaint);
144
145 canvas->translate(dstRect.width() + SK_Scalar1 * kPadX, 0);
146 ++rowCount;
147 if ((dstRect.width() + kPadX) * rowCount > gSize) {
148 canvas->restore();
149 canvas->translate(0, dstRect.height() + SK_Scalar1 * kPadY);
150 canvas->save();
151 rowCount = 0;
152 }
153 }
154 }
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000155
156 {
157 // test the following code path:
158 // SkGpuDevice::drawPath() -> SkGpuDevice::drawWithMaskFilter()
159 SkIRect srcRect;
160 SkPaint paint;
161 SkBitmap bm;
162
163 bm = make_chessbm(5, 5);
reed@google.com44699382013-10-31 17:28:30 +0000164 paint.setFilterLevel(SkPaint::kLow_FilterLevel);
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000165
166 srcRect.setXYWH(1, 1, 3, 3);
167 SkMaskFilter* mf = SkBlurMaskFilter::Create(
commit-bot@chromium.orge3964552014-04-28 16:25:35 +0000168 kNormal_SkBlurStyle,
robertphillips@google.comb7061172013-09-06 14:16:12 +0000169 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)),
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000170 SkBlurMaskFilter::kHighQuality_BlurFlag |
171 SkBlurMaskFilter::kIgnoreTransform_BlurFlag);
172 paint.setMaskFilter(mf)->unref();
173 canvas->drawBitmapRect(bm, &srcRect, dstRect, &paint);
174 }
bsalomon@google.comfb309512011-11-30 14:13:48 +0000175 }
176
177private:
178 typedef GM INHERITED;
179};
180
181//////////////////////////////////////////////////////////////////////////////
182
183static GM* MyFactory(void*) { return new DrawBitmapRectGM; }
184static GMRegistry reg(MyFactory);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000185}