blob: fd205f53378b9e36ce0065082eedde8b1d41c54d [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.org83f23d82014-05-22 12:27:41 +000066 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
tfarinaf5393182014-06-09 23:59:03 -070089 SkISize onISize() { return SkISize::Make(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);
Cary Clark992c7b02014-07-31 08:58:44 -0400114 sk_tool_utils::set_portable_typeface(&blackPaint);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000115 SkString title;
116 title.printf("Bitmap size: %d x %d", kBmpSize, kBmpSize);
117 canvas->drawText(title.c_str(), title.size(), 0,
118 titleHeight, blackPaint);
119
120 canvas->translate(0, SK_Scalar1 * kPadY / 2 + titleHeight);
121 int rowCount = 0;
122 canvas->save();
123 for (int w = 1; w <= kMaxSrcRectSize; w *= 4) {
124 for (int h = 1; h <= kMaxSrcRectSize; h *= 4) {
125
126 SkIRect srcRect = SkIRect::MakeXYWH((kBmpSize - w) / 2,
127 (kBmpSize - h) / 2,
128 w, h);
129 canvas->drawBitmapRect(fLargeBitmap, &srcRect, dstRect);
130
131 SkString label;
132 label.appendf("%d x %d", w, h);
133 blackPaint.setAntiAlias(true);
134 blackPaint.setStyle(SkPaint::kFill_Style);
135 blackPaint.setTextSize(SK_Scalar1 * 10);
136 SkScalar baseline = dstRect.height() +
137 blackPaint.getTextSize() + SK_Scalar1 * 3;
138 canvas->drawText(label.c_str(), label.size(),
139 0, baseline,
140 blackPaint);
141 blackPaint.setStyle(SkPaint::kStroke_Style);
142 blackPaint.setStrokeWidth(SK_Scalar1);
143 blackPaint.setAntiAlias(false);
144 canvas->drawRect(dstRect, blackPaint);
145
146 canvas->translate(dstRect.width() + SK_Scalar1 * kPadX, 0);
147 ++rowCount;
148 if ((dstRect.width() + kPadX) * rowCount > gSize) {
149 canvas->restore();
150 canvas->translate(0, dstRect.height() + SK_Scalar1 * kPadY);
151 canvas->save();
152 rowCount = 0;
153 }
154 }
155 }
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000156
157 {
158 // test the following code path:
159 // SkGpuDevice::drawPath() -> SkGpuDevice::drawWithMaskFilter()
160 SkIRect srcRect;
161 SkPaint paint;
162 SkBitmap bm;
163
164 bm = make_chessbm(5, 5);
reed@google.com44699382013-10-31 17:28:30 +0000165 paint.setFilterLevel(SkPaint::kLow_FilterLevel);
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000166
167 srcRect.setXYWH(1, 1, 3, 3);
168 SkMaskFilter* mf = SkBlurMaskFilter::Create(
commit-bot@chromium.orge3964552014-04-28 16:25:35 +0000169 kNormal_SkBlurStyle,
robertphillips@google.comb7061172013-09-06 14:16:12 +0000170 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)),
bsalomon@google.com7d30a212012-04-25 15:52:27 +0000171 SkBlurMaskFilter::kHighQuality_BlurFlag |
172 SkBlurMaskFilter::kIgnoreTransform_BlurFlag);
173 paint.setMaskFilter(mf)->unref();
174 canvas->drawBitmapRect(bm, &srcRect, dstRect, &paint);
175 }
bsalomon@google.comfb309512011-11-30 14:13:48 +0000176 }
177
178private:
179 typedef GM INHERITED;
180};
181
182//////////////////////////////////////////////////////////////////////////////
183
184static GM* MyFactory(void*) { return new DrawBitmapRectGM; }
185static GMRegistry reg(MyFactory);
bsalomon@google.comfb309512011-11-30 14:13:48 +0000186}