blob: 368b7200f662316896bc96a0deb20e13c6a54e42 [file] [log] [blame]
reed@google.com71121732012-09-18 15:14:33 +00001/*
2 * Copyright 2011 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 */
reed2ad1aa62016-03-09 09:50:50 -08007
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "gm/gm.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -04009#include "include/core/SkBitmap.h"
10#include "include/core/SkBlendMode.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050011#include "include/core/SkCanvas.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -040012#include "include/core/SkColor.h"
13#include "include/core/SkPaint.h"
14#include "include/core/SkPoint.h"
15#include "include/core/SkRect.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "include/core/SkShader.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -040017#include "include/core/SkSize.h"
18#include "include/core/SkString.h"
19#include "include/core/SkTileMode.h"
20#include "include/core/SkTypes.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050021#include "include/effects/SkGradientShader.h"
reed@google.com71121732012-09-18 15:14:33 +000022
23static void make_bitmap(SkBitmap* bitmap) {
reed@google.comeb9a46c2014-01-25 16:46:20 +000024 bitmap->allocN32Pixels(64, 64);
reed@google.com71121732012-09-18 15:14:33 +000025
mike@reedtribe.org3bd21732012-09-26 02:45:10 +000026 SkCanvas canvas(*bitmap);
reed@google.com71121732012-09-18 15:14:33 +000027
28 canvas.drawColor(SK_ColorRED);
29 SkPaint paint;
30 paint.setAntiAlias(true);
31 const SkPoint pts[] = { { 0, 0 }, { 64, 64 } };
32 const SkColor colors[] = { SK_ColorWHITE, SK_ColorBLUE };
Mike Reedfae8fce2019-04-03 10:27:45 -040033 paint.setShader(SkGradientShader::MakeLinear(pts, colors, nullptr, 2, SkTileMode::kClamp));
reed@google.com71121732012-09-18 15:14:33 +000034 canvas.drawCircle(32, 32, 32, paint);
35}
36
37class DrawBitmapRect2 : public skiagm::GM {
38 bool fUseIRect;
39public:
40 DrawBitmapRect2(bool useIRect) : fUseIRect(useIRect) {
41 }
42
43protected:
mtklein36352bf2015-03-25 18:17:31 -070044 SkString onShortName() override {
reed@google.com71121732012-09-18 15:14:33 +000045 SkString str;
46 str.printf("bitmaprect_%s", fUseIRect ? "i" : "s");
47 return str;
48 }
49
mtklein36352bf2015-03-25 18:17:31 -070050 SkISize onISize() override {
reed@google.com71121732012-09-18 15:14:33 +000051 return SkISize::Make(640, 480);
52 }
53
mtklein36352bf2015-03-25 18:17:31 -070054 void onDraw(SkCanvas* canvas) override {
Mike Kleind46dce32018-08-16 10:17:03 -040055 canvas->drawColor(0xFFCCCCCC);
reed@google.com71121732012-09-18 15:14:33 +000056
57 const SkIRect src[] = {
58 { 0, 0, 32, 32 },
59 { 0, 0, 80, 80 },
60 { 32, 32, 96, 96 },
61 { -32, -32, 32, 32, }
62 };
63
64 SkPaint paint;
65 paint.setStyle(SkPaint::kStroke_Style);
reed@google.com71121732012-09-18 15:14:33 +000066
67 SkBitmap bitmap;
68 make_bitmap(&bitmap);
69
70 SkRect dstR = { 0, 200, 128, 380 };
71
72 canvas->translate(16, 40);
73 for (size_t i = 0; i < SK_ARRAY_COUNT(src); i++) {
74 SkRect srcR;
75 srcR.set(src[i]);
76
77 canvas->drawBitmap(bitmap, 0, 0, &paint);
robertphillips@google.com21a95f12012-09-26 13:10:19 +000078 if (!fUseIRect) {
reede47829b2015-08-06 10:02:53 -070079 canvas->drawBitmapRect(bitmap, srcR, dstR, &paint,
reeda5517e22015-07-14 10:54:12 -070080 SkCanvas::kStrict_SrcRectConstraint);
reed@google.com71121732012-09-18 15:14:33 +000081 } else {
reed84984ef2015-07-17 07:09:43 -070082 canvas->drawBitmapRect(bitmap, src[i], dstR, &paint);
reed@google.com71121732012-09-18 15:14:33 +000083 }
84
85 canvas->drawRect(dstR, paint);
86 canvas->drawRect(srcR, paint);
87
88 canvas->translate(160, 0);
89 }
90 }
91
92private:
93 typedef skiagm::GM INHERITED;
94};
95
96//////////////////////////////////////////////////////////////////////////////
reed776c0cd2015-01-27 07:26:51 -080097
robertphillips@google.com21a95f12012-09-26 13:10:19 +000098static void make_3x3_bitmap(SkBitmap* bitmap) {
reed776c0cd2015-01-27 07:26:51 -080099 const int xSize = 3;
100 const int ySize = 3;
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000101
reed776c0cd2015-01-27 07:26:51 -0800102 const SkColor textureData[xSize][ySize] = {
robertphillips@google.com93f03322012-12-03 17:35:19 +0000103 { SK_ColorRED, SK_ColorWHITE, SK_ColorBLUE },
104 { SK_ColorGREEN, SK_ColorBLACK, SK_ColorCYAN },
105 { SK_ColorYELLOW, SK_ColorGRAY, SK_ColorMAGENTA }
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000106 };
107
reed776c0cd2015-01-27 07:26:51 -0800108 bitmap->allocN32Pixels(xSize, ySize, true);
109 SkCanvas canvas(*bitmap);
110 SkPaint paint;
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000111
reed776c0cd2015-01-27 07:26:51 -0800112 for (int y = 0; y < ySize; y++) {
113 for (int x = 0; x < xSize; x++) {
114 paint.setColor(textureData[x][y]);
115 canvas.drawIRect(SkIRect::MakeXYWH(x, y, 1, 1), paint);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000116 }
117 }
118}
119
reeda5517e22015-07-14 10:54:12 -0700120// This GM attempts to make visible any issues drawBitmapRect may have
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000121// with partial source rects. In this case the eight pixels on the border
122// should be half the width/height of the central pixel, i.e.:
123// __|____|__
124// | |
125// __|____|__
126// | |
127class DrawBitmapRect3 : public skiagm::GM {
128public:
129 DrawBitmapRect3() {
130 this->setBGColor(SK_ColorBLACK);
131 }
132
133protected:
mtklein36352bf2015-03-25 18:17:31 -0700134 SkString onShortName() override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000135 SkString str;
136 str.printf("3x3bitmaprect");
137 return str;
138 }
139
mtklein36352bf2015-03-25 18:17:31 -0700140 SkISize onISize() override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000141 return SkISize::Make(640, 480);
142 }
143
mtklein36352bf2015-03-25 18:17:31 -0700144 void onDraw(SkCanvas* canvas) override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000145
146 SkBitmap bitmap;
147 make_3x3_bitmap(&bitmap);
148
149 SkRect srcR = { 0.5f, 0.5f, 2.5f, 2.5f };
150 SkRect dstR = { 100, 100, 300, 200 };
151
reede47829b2015-08-06 10:02:53 -0700152 canvas->drawBitmapRect(bitmap, srcR, dstR, nullptr, SkCanvas::kStrict_SrcRectConstraint);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000153 }
154
155private:
156 typedef skiagm::GM INHERITED;
157};
158
159//////////////////////////////////////////////////////////////////////////////
160static void make_big_bitmap(SkBitmap* bitmap) {
161
mtkleindbfd7ab2016-09-01 11:24:54 -0700162 constexpr int gXSize = 4096;
163 constexpr int gYSize = 4096;
164 constexpr int gBorderWidth = 10;
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000165
reed@google.comeb9a46c2014-01-25 16:46:20 +0000166 bitmap->allocN32Pixels(gXSize, gYSize);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000167 for (int y = 0; y < gYSize; ++y) {
168 for (int x = 0; x < gXSize; ++x) {
skia.committer@gmail.com44d49882012-09-27 02:01:04 +0000169 if (x <= gBorderWidth || x >= gXSize-gBorderWidth ||
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000170 y <= gBorderWidth || y >= gYSize-gBorderWidth) {
reedc6e13d72015-04-02 05:43:09 -0700171 *bitmap->getAddr32(x, y) = SkPreMultiplyColor(0x88FFFFFF);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000172 } else {
reedc6e13d72015-04-02 05:43:09 -0700173 *bitmap->getAddr32(x, y) = SkPreMultiplyColor(0x88FF0000);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000174 }
175 }
176 }
177}
178
179// This GM attempts to reveal any issues we may have when the GPU has to
180// break up a large texture in order to draw it. The XOR transfer mode will
181// create stripes in the image if there is imprecision in the destination
182// tile placement.
183class DrawBitmapRect4 : public skiagm::GM {
184 bool fUseIRect;
commit-bot@chromium.org9a558d42014-05-30 15:06:24 +0000185 SkBitmap fBigBitmap;
186
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000187public:
188 DrawBitmapRect4(bool useIRect) : fUseIRect(useIRect) {
189 this->setBGColor(0x88444444);
190 }
191
192protected:
mtklein36352bf2015-03-25 18:17:31 -0700193 SkString onShortName() override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000194 SkString str;
195 str.printf("bigbitmaprect_%s", fUseIRect ? "i" : "s");
196 return str;
197 }
198
mtklein36352bf2015-03-25 18:17:31 -0700199 SkISize onISize() override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000200 return SkISize::Make(640, 480);
201 }
202
mtklein36352bf2015-03-25 18:17:31 -0700203 void onOnceBeforeDraw() override {
commit-bot@chromium.org9a558d42014-05-30 15:06:24 +0000204 make_big_bitmap(&fBigBitmap);
205 }
206
mtklein36352bf2015-03-25 18:17:31 -0700207 void onDraw(SkCanvas* canvas) override {
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000208 SkPaint paint;
209 paint.setAlpha(128);
reed374772b2016-10-05 17:33:02 -0700210 paint.setBlendMode(SkBlendMode::kXor);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000211
robertphillips@google.comffad46b2012-10-01 14:32:51 +0000212 SkRect srcR1 = { 0.0f, 0.0f, 4096.0f, 2040.0f };
213 SkRect dstR1 = { 10.1f, 10.1f, 629.9f, 400.9f };
214
215 SkRect srcR2 = { 4085.0f, 10.0f, 4087.0f, 12.0f };
216 SkRect dstR2 = { 10, 410, 30, 430 };
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000217
218 if (!fUseIRect) {
reede47829b2015-08-06 10:02:53 -0700219 canvas->drawBitmapRect(fBigBitmap, srcR1, dstR1, &paint,
reed84984ef2015-07-17 07:09:43 -0700220 SkCanvas::kStrict_SrcRectConstraint);
reede47829b2015-08-06 10:02:53 -0700221 canvas->drawBitmapRect(fBigBitmap, srcR2, dstR2, &paint,
reed84984ef2015-07-17 07:09:43 -0700222 SkCanvas::kStrict_SrcRectConstraint);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000223 } else {
reed84984ef2015-07-17 07:09:43 -0700224 canvas->drawBitmapRect(fBigBitmap, srcR1.roundOut(), dstR1, &paint);
225 canvas->drawBitmapRect(fBigBitmap, srcR2.roundOut(), dstR2, &paint);
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000226 }
227 }
228
229private:
230 typedef skiagm::GM INHERITED;
231};
232
reedf7869012014-12-01 13:54:01 -0800233class BitmapRectRounding : public skiagm::GM {
234 SkBitmap fBM;
235
236public:
237 BitmapRectRounding() {}
238
239protected:
mtklein36352bf2015-03-25 18:17:31 -0700240 SkString onShortName() override {
reedf7869012014-12-01 13:54:01 -0800241 SkString str;
242 str.printf("bitmaprect_rounding");
243 return str;
244 }
245
mtklein36352bf2015-03-25 18:17:31 -0700246 SkISize onISize() override {
reedf7869012014-12-01 13:54:01 -0800247 return SkISize::Make(640, 480);
248 }
249
mtklein36352bf2015-03-25 18:17:31 -0700250 void onOnceBeforeDraw() override {
reedf7869012014-12-01 13:54:01 -0800251 fBM.allocN32Pixels(10, 10);
252 fBM.eraseColor(SK_ColorBLUE);
253 }
254
255 // This choice of coordinates and matrix land the bottom edge of the clip (and bitmap dst)
256 // at exactly 1/2 pixel boundary. However, drawBitmapRect may lose precision along the way.
257 // If it does, we may see a red-line at the bottom, instead of the bitmap exactly matching
258 // the clip (in which case we should see all blue).
259 // The correct image should be all blue.
mtklein36352bf2015-03-25 18:17:31 -0700260 void onDraw(SkCanvas* canvas) override {
reedf7869012014-12-01 13:54:01 -0800261 SkPaint paint;
262 paint.setColor(SK_ColorRED);
263
264 const SkRect r = SkRect::MakeXYWH(1, 1, 110, 114);
265 canvas->scale(0.9f, 0.9f);
266
267 // the drawRect shows the same problem as clipRect(r) followed by drawcolor(red)
268 canvas->drawRect(r, paint);
reede47829b2015-08-06 10:02:53 -0700269 canvas->drawBitmapRect(fBM, r, nullptr);
reedf7869012014-12-01 13:54:01 -0800270 }
mtklein1c402922015-01-23 11:07:07 -0800271
reedf7869012014-12-01 13:54:01 -0800272private:
273 typedef skiagm::GM INHERITED;
274};
reed03939122014-12-15 13:42:51 -0800275DEF_GM( return new BitmapRectRounding; )
reedf7869012014-12-01 13:54:01 -0800276
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000277//////////////////////////////////////////////////////////////////////////////
reed@google.com71121732012-09-18 15:14:33 +0000278
scroggo96f16e82015-12-10 13:31:59 -0800279DEF_GM( return new DrawBitmapRect2(false); )
280DEF_GM( return new DrawBitmapRect2(true); )
281DEF_GM( return new DrawBitmapRect3(); )
robertphillips@google.com21a95f12012-09-26 13:10:19 +0000282
robertphillips@google.com653b0d62012-09-26 15:28:04 +0000283#ifndef SK_BUILD_FOR_ANDROID
scroggo96f16e82015-12-10 13:31:59 -0800284DEF_GM( return new DrawBitmapRect4(false); )
285DEF_GM( return new DrawBitmapRect4(true); )
robertphillips@google.com653b0d62012-09-26 15:28:04 +0000286#endif