blob: 4eeae738da78bfd8becc666d8cc322fc4093d275 [file] [log] [blame]
robertphillips@google.comaaa9b292013-07-25 21:34:00 +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
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/SkBlurTypes.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/SkFilterQuality.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "include/core/SkImage.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -040015#include "include/core/SkImageInfo.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "include/core/SkMaskFilter.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -040017#include "include/core/SkMatrix.h"
18#include "include/core/SkPaint.h"
19#include "include/core/SkPoint.h"
20#include "include/core/SkRect.h"
21#include "include/core/SkRefCnt.h"
22#include "include/core/SkScalar.h"
23#include "include/core/SkShader.h"
24#include "include/core/SkSize.h"
25#include "include/core/SkString.h"
26#include "include/core/SkSurface.h"
27#include "include/core/SkTileMode.h"
28#include "include/core/SkTypes.h"
Ben Wagner6a34f3a2019-05-01 10:59:30 -040029#include "include/gpu/GrContextOptions.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050030#include "include/private/SkTDArray.h"
31#include "src/core/SkBlurMask.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050032#include "tools/ToolUtils.h"
robertphillips@google.comaaa9b292013-07-25 21:34:00 +000033
Brian Salomon6ef29332020-05-15 09:52:29 -040034/** Creates an image with two one-pixel wide borders around a checkerboard. The checkerboard is 2x2
35 checks where each check has as many pixels as is necessary to fill the interior. It returns
36 the image and a src rect that bounds the checkerboard portion. */
37std::tuple<sk_sp<SkImage>, SkIRect> make_ringed_image(int width, int height) {
reeda5517e22015-07-14 10:54:12 -070038
Brian Salomon6ef29332020-05-15 09:52:29 -040039 // These are kRGBA_8888_SkColorType values.
40 static constexpr uint32_t kOuterRingColor = 0xFFFF0000,
41 kInnerRingColor = 0xFF0000FF,
42 kCheckColor1 = 0xFF000000,
43 kCheckColor2 = 0xFFFFFFFF;
44
commit-bot@chromium.orgec39b502013-11-08 15:09:22 +000045 SkASSERT(0 == width % 2 && 0 == height % 2);
bsalomon5c1262d2015-11-09 10:06:06 -080046 SkASSERT(width >= 6 && height >= 6);
skia.committer@gmail.comed000842013-11-09 07:02:23 +000047
Brian Salomon6ef29332020-05-15 09:52:29 -040048 SkImageInfo info = SkImageInfo::Make(width, height, kRGBA_8888_SkColorType,
49 kPremul_SkAlphaType);
bsalomon5c1262d2015-11-09 10:06:06 -080050 size_t rowBytes = SkAlign4(info.minRowBytes());
Brian Salomon6ef29332020-05-15 09:52:29 -040051 SkBitmap bitmap;
52 bitmap.allocPixels(info, rowBytes);
bsalomon5c1262d2015-11-09 10:06:06 -080053
Brian Salomon6ef29332020-05-15 09:52:29 -040054 uint32_t* scanline = bitmap.getAddr32(0, 0);
bsalomon5c1262d2015-11-09 10:06:06 -080055 for (int x = 0; x < width; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040056 scanline[x] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080057 }
Brian Salomon6ef29332020-05-15 09:52:29 -040058 scanline = bitmap.getAddr32(0, 1);
59 scanline[0] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080060 for (int x = 1; x < width - 1; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040061 scanline[x] = kInnerRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080062 }
Brian Salomon6ef29332020-05-15 09:52:29 -040063 scanline[width - 1] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080064
65 for (int y = 2; y < height / 2; ++y) {
Brian Salomon6ef29332020-05-15 09:52:29 -040066 scanline = bitmap.getAddr32(0, y);
67 scanline[0] = kOuterRingColor;
68 scanline[1] = kInnerRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080069 for (int x = 2; x < width / 2; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040070 scanline[x] = kCheckColor1;
bsalomon5c1262d2015-11-09 10:06:06 -080071 }
72 for (int x = width / 2; x < width - 2; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040073 scanline[x] = kCheckColor2;
bsalomon5c1262d2015-11-09 10:06:06 -080074 }
Brian Salomon6ef29332020-05-15 09:52:29 -040075 scanline[width - 2] = kInnerRingColor;
76 scanline[width - 1] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080077 }
78
79 for (int y = height / 2; y < height - 2; ++y) {
Brian Salomon6ef29332020-05-15 09:52:29 -040080 scanline = bitmap.getAddr32(0, y);
81 scanline[0] = kOuterRingColor;
82 scanline[1] = kInnerRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080083 for (int x = 2; x < width / 2; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040084 scanline[x] = kCheckColor2;
bsalomon5c1262d2015-11-09 10:06:06 -080085 }
86 for (int x = width / 2; x < width - 2; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040087 scanline[x] = kCheckColor1;
bsalomon5c1262d2015-11-09 10:06:06 -080088 }
Brian Salomon6ef29332020-05-15 09:52:29 -040089 scanline[width - 2] = kInnerRingColor;
90 scanline[width - 1] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080091 }
92
Brian Salomon6ef29332020-05-15 09:52:29 -040093 scanline = bitmap.getAddr32(0, height - 2);
94 scanline[0] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080095 for (int x = 1; x < width - 1; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -040096 scanline[x] = kInnerRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080097 }
Brian Salomon6ef29332020-05-15 09:52:29 -040098 scanline[width - 1] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -080099
Brian Salomon6ef29332020-05-15 09:52:29 -0400100 scanline = bitmap.getAddr32(0, height - 1);
bsalomon5c1262d2015-11-09 10:06:06 -0800101 for (int x = 0; x < width; ++x) {
Brian Salomon6ef29332020-05-15 09:52:29 -0400102 scanline[x] = kOuterRingColor;
bsalomon5c1262d2015-11-09 10:06:06 -0800103 }
Brian Salomon6ef29332020-05-15 09:52:29 -0400104 bitmap.setImmutable();
105 return {SkImage::MakeFromBitmap(bitmap), {2, 2, width - 2, height - 2}};
bsalomon5c1262d2015-11-09 10:06:06 -0800106}
107
Brian Salomon6ef29332020-05-15 09:52:29 -0400108/**
Brian Salomonca769202020-05-18 16:40:59 -0400109 * These GMs exercise the behavior of the drawImageRect and its SrcRectConstraint parameter. They
110 * tests various matrices, filter qualities, and interaction with mask filters. They also exercise
Brian Salomon6ef29332020-05-15 09:52:29 -0400111 * the tiling image draws of SkGpuDevice by overriding the maximum texture size of the GrContext.
112 */
Brian Salomonca769202020-05-18 16:40:59 -0400113class SrcRectConstraintGM : public skiagm::GM {
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000114public:
John Stilesd20a1342020-05-26 10:38:24 -0400115 SrcRectConstraintGM(const char* shortName, SkCanvas::SrcRectConstraint constraint, bool batch)
116 : fShortName(shortName)
117 , fConstraint(constraint)
118 , fBatch(batch) {}
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000119
120protected:
John Stilesd20a1342020-05-26 10:38:24 -0400121 SkString onShortName() override { return fShortName; }
Brian Salomonca769202020-05-18 16:40:59 -0400122 SkISize onISize() override { return SkISize::Make(800, 1000); }
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000123
John Stilesd20a1342020-05-26 10:38:24 -0400124 void drawImage(SkCanvas* canvas, sk_sp<SkImage> image,
125 SkIRect srcRect, SkRect dstRect, SkPaint* paint) {
126 if (fBatch) {
127 SkCanvas::ImageSetEntry imageSetEntry[1];
128 imageSetEntry[0].fImage = image;
129 imageSetEntry[0].fSrcRect = SkRect::Make(srcRect);
130 imageSetEntry[0].fDstRect = dstRect;
131 imageSetEntry[0].fAAFlags = paint->isAntiAlias() ? SkCanvas::kAll_QuadAAFlags
132 : SkCanvas::kNone_QuadAAFlags;
133 canvas->experimental_DrawEdgeAAImageSet(imageSetEntry, SK_ARRAY_COUNT(imageSetEntry),
134 /*dstClips=*/nullptr,
135 /*preViewMatrices=*/nullptr,
136 paint, fConstraint);
137 } else {
138 canvas->drawImageRect(image.get(), srcRect, dstRect, paint, fConstraint);
139 }
140 }
141
bsalomon5c1262d2015-11-09 10:06:06 -0800142 // Draw the area of interest of the small image
Brian Salomonca769202020-05-18 16:40:59 -0400143 void drawCase1(SkCanvas* canvas, int transX, int transY, bool aa, SkFilterQuality filter) {
reeda5517e22015-07-14 10:54:12 -0700144 SkRect dst = SkRect::MakeXYWH(SkIntToScalar(transX), SkIntToScalar(transY),
145 SkIntToScalar(kBlockSize), SkIntToScalar(kBlockSize));
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000146
147 SkPaint paint;
reed93a12152015-03-16 10:08:34 -0700148 paint.setFilterQuality(filter);
bsalomon9003d1e2015-10-23 11:13:01 -0700149 paint.setColor(SK_ColorBLUE);
150 paint.setAntiAlias(aa);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000151
John Stilesd20a1342020-05-26 10:38:24 -0400152 drawImage(canvas, fSmallImage, fSmallSrcRect, dst, &paint);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000153 }
154
bsalomon5c1262d2015-11-09 10:06:06 -0800155 // Draw the area of interest of the large image
Brian Salomonca769202020-05-18 16:40:59 -0400156 void drawCase2(SkCanvas* canvas, int transX, int transY, bool aa, SkFilterQuality filter) {
reeda5517e22015-07-14 10:54:12 -0700157 SkRect dst = SkRect::MakeXYWH(SkIntToScalar(transX), SkIntToScalar(transY),
158 SkIntToScalar(kBlockSize), SkIntToScalar(kBlockSize));
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000159
160 SkPaint paint;
reed93a12152015-03-16 10:08:34 -0700161 paint.setFilterQuality(filter);
bsalomon9003d1e2015-10-23 11:13:01 -0700162 paint.setColor(SK_ColorBLUE);
163 paint.setAntiAlias(aa);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000164
John Stilesd20a1342020-05-26 10:38:24 -0400165 drawImage(canvas, fBigImage, fBigSrcRect, dst, &paint);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000166 }
167
bsalomon5c1262d2015-11-09 10:06:06 -0800168 // Draw upper-left 1/4 of the area of interest of the large image
Brian Salomonca769202020-05-18 16:40:59 -0400169 void drawCase3(SkCanvas* canvas, int transX, int transY, bool aa, SkFilterQuality filter) {
Brian Salomon6ef29332020-05-15 09:52:29 -0400170 SkIRect src = SkIRect::MakeXYWH(fBigSrcRect.fLeft,
171 fBigSrcRect.fTop,
172 fBigSrcRect.width()/2,
173 fBigSrcRect.height()/2);
reeda5517e22015-07-14 10:54:12 -0700174 SkRect dst = SkRect::MakeXYWH(SkIntToScalar(transX), SkIntToScalar(transY),
175 SkIntToScalar(kBlockSize), SkIntToScalar(kBlockSize));
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000176
177 SkPaint paint;
reed93a12152015-03-16 10:08:34 -0700178 paint.setFilterQuality(filter);
bsalomon9003d1e2015-10-23 11:13:01 -0700179 paint.setColor(SK_ColorBLUE);
180 paint.setAntiAlias(aa);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000181
John Stilesd20a1342020-05-26 10:38:24 -0400182 drawImage(canvas, fBigImage, src, dst, &paint);
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000183 }
184
bsalomon5c1262d2015-11-09 10:06:06 -0800185 // Draw the area of interest of the small image with a normal blur
Brian Salomonca769202020-05-18 16:40:59 -0400186 void drawCase4(SkCanvas* canvas, int transX, int transY, bool aa, SkFilterQuality filter) {
reeda5517e22015-07-14 10:54:12 -0700187 SkRect dst = SkRect::MakeXYWH(SkIntToScalar(transX), SkIntToScalar(transY),
188 SkIntToScalar(kBlockSize), SkIntToScalar(kBlockSize));
robertphillips@google.com2cc0b472013-08-20 16:51:20 +0000189
190 SkPaint paint;
reed93a12152015-03-16 10:08:34 -0700191 paint.setFilterQuality(filter);
Mike Reed1be1f8d2018-03-14 13:01:17 -0400192 paint.setMaskFilter(SkMaskFilter::MakeBlur(kNormal_SkBlurStyle,
reedefdfd512016-04-04 10:02:58 -0700193 SkBlurMask::ConvertRadiusToSigma(3)));
bsalomon9003d1e2015-10-23 11:13:01 -0700194 paint.setColor(SK_ColorBLUE);
195 paint.setAntiAlias(aa);
robertphillips@google.com2cc0b472013-08-20 16:51:20 +0000196
John Stilesd20a1342020-05-26 10:38:24 -0400197 drawImage(canvas, fSmallImage, fSmallSrcRect, dst, &paint);
robertphillips@google.com2cc0b472013-08-20 16:51:20 +0000198 }
199
bsalomon5c1262d2015-11-09 10:06:06 -0800200 // Draw the area of interest of the small image with a outer blur
Brian Salomonca769202020-05-18 16:40:59 -0400201 void drawCase5(SkCanvas* canvas, int transX, int transY, bool aa, SkFilterQuality filter) {
bsalomonf57ef1c2015-11-04 04:36:12 -0800202 SkRect dst = SkRect::MakeXYWH(SkIntToScalar(transX), SkIntToScalar(transY),
203 SkIntToScalar(kBlockSize), SkIntToScalar(kBlockSize));
204
205 SkPaint paint;
206 paint.setFilterQuality(filter);
Mike Reed1be1f8d2018-03-14 13:01:17 -0400207 paint.setMaskFilter(SkMaskFilter::MakeBlur(kOuter_SkBlurStyle,
reedefdfd512016-04-04 10:02:58 -0700208 SkBlurMask::ConvertRadiusToSigma(7)));
bsalomonf57ef1c2015-11-04 04:36:12 -0800209 paint.setColor(SK_ColorBLUE);
210 paint.setAntiAlias(aa);
211
John Stilesd20a1342020-05-26 10:38:24 -0400212 drawImage(canvas, fSmallImage, fSmallSrcRect, dst, &paint);
bsalomonf57ef1c2015-11-04 04:36:12 -0800213 }
214
bsalomona2e08372016-07-13 14:50:17 -0700215 void onOnceBeforeDraw() override {
Brian Salomon6ef29332020-05-15 09:52:29 -0400216 std::tie(fBigImage, fBigSrcRect) = make_ringed_image(2*kMaxTileSize, 2*kMaxTileSize);
217 std::tie(fSmallImage, fSmallSrcRect) = make_ringed_image(kSmallSize, kSmallSize);
bsalomona2e08372016-07-13 14:50:17 -0700218 }
219
mtklein36352bf2015-03-25 18:17:31 -0700220 void onDraw(SkCanvas* canvas) override {
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000221 canvas->clear(SK_ColorGRAY);
John Stilescbe4e282020-06-01 10:38:31 -0400222 std::vector<SkMatrix> matrices;
bsalomon9003d1e2015-10-23 11:13:01 -0700223 // Draw with identity
John Stilescbe4e282020-06-01 10:38:31 -0400224 matrices.push_back(SkMatrix::I());
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000225
bsalomon9003d1e2015-10-23 11:13:01 -0700226 // Draw with rotation and scale down in x, up in y.
227 SkMatrix m;
mtkleindbfd7ab2016-09-01 11:24:54 -0700228 constexpr SkScalar kBottom = SkIntToScalar(kRow4Y + kBlockSize + kBlockSpacing);
bsalomon9003d1e2015-10-23 11:13:01 -0700229 m.setTranslate(0, kBottom);
230 m.preRotate(15.f, 0, kBottom + kBlockSpacing);
231 m.preScale(0.71f, 1.22f);
John Stilescbe4e282020-06-01 10:38:31 -0400232 matrices.push_back(m);
bsalomon9003d1e2015-10-23 11:13:01 -0700233
234 // Align the next set with the middle of the previous in y, translated to the right in x.
John Stilescbe4e282020-06-01 10:38:31 -0400235 SkPoint corners[] = {{0, 0}, {0, kBottom}, {kWidth, kBottom}, {kWidth, 0}};
236 matrices.back().mapPoints(corners, 4);
bsalomon9003d1e2015-10-23 11:13:01 -0700237 SkScalar y = (corners[0].fY + corners[1].fY + corners[2].fY + corners[3].fY) / 4;
John Stilescbe4e282020-06-01 10:38:31 -0400238 SkScalar x = std::max({corners[0].fX, corners[1].fX, corners[2].fX, corners[3].fX});
bsalomon9003d1e2015-10-23 11:13:01 -0700239 m.setTranslate(x, y);
240 m.preScale(0.2f, 0.2f);
John Stilescbe4e282020-06-01 10:38:31 -0400241 matrices.push_back(m);
bsalomon9003d1e2015-10-23 11:13:01 -0700242
243 SkScalar maxX = 0;
John Stilescbe4e282020-06-01 10:38:31 -0400244 for (bool antiAlias : {false, true}) {
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +0000245 canvas->save();
bsalomon9003d1e2015-10-23 11:13:01 -0700246 canvas->translate(maxX, 0);
John Stilescbe4e282020-06-01 10:38:31 -0400247 for (const SkMatrix& matrix : matrices) {
bsalomon9003d1e2015-10-23 11:13:01 -0700248 canvas->save();
John Stilescbe4e282020-06-01 10:38:31 -0400249 canvas->concat(matrix);
bsalomon9003d1e2015-10-23 11:13:01 -0700250
Brian Salomonca769202020-05-18 16:40:59 -0400251 // First draw a column with no filtering
John Stilescbe4e282020-06-01 10:38:31 -0400252 this->drawCase1(canvas, kCol0X, kRow0Y, antiAlias, kNone_SkFilterQuality);
253 this->drawCase2(canvas, kCol0X, kRow1Y, antiAlias, kNone_SkFilterQuality);
254 this->drawCase3(canvas, kCol0X, kRow2Y, antiAlias, kNone_SkFilterQuality);
255 this->drawCase4(canvas, kCol0X, kRow3Y, antiAlias, kNone_SkFilterQuality);
256 this->drawCase5(canvas, kCol0X, kRow4Y, antiAlias, kNone_SkFilterQuality);
bsalomon9003d1e2015-10-23 11:13:01 -0700257
Brian Salomonca769202020-05-18 16:40:59 -0400258 // Then draw a column with low filtering
John Stilescbe4e282020-06-01 10:38:31 -0400259 this->drawCase1(canvas, kCol1X, kRow0Y, antiAlias, kLow_SkFilterQuality);
260 this->drawCase2(canvas, kCol1X, kRow1Y, antiAlias, kLow_SkFilterQuality);
261 this->drawCase3(canvas, kCol1X, kRow2Y, antiAlias, kLow_SkFilterQuality);
262 this->drawCase4(canvas, kCol1X, kRow3Y, antiAlias, kLow_SkFilterQuality);
263 this->drawCase5(canvas, kCol1X, kRow4Y, antiAlias, kLow_SkFilterQuality);
bsalomon9003d1e2015-10-23 11:13:01 -0700264
Brian Salomon2a7eff92020-05-19 10:22:03 -0400265 // Then draw a column with high filtering. Skip it if in kStrict mode and MIP
266 // mapping will be used. On GPU we allow bleeding at non-base levels because
267 // building a new MIP chain for the subset is expensive.
268 SkScalar scales[2];
John Stilescbe4e282020-06-01 10:38:31 -0400269 SkAssertResult(matrix.getMinMaxScales(scales));
Brian Salomon2a7eff92020-05-19 10:22:03 -0400270 if (fConstraint != SkCanvas::kStrict_SrcRectConstraint || scales[0] >= 1.f) {
John Stilescbe4e282020-06-01 10:38:31 -0400271 this->drawCase1(canvas, kCol2X, kRow0Y, antiAlias, kHigh_SkFilterQuality);
272 this->drawCase2(canvas, kCol2X, kRow1Y, antiAlias, kHigh_SkFilterQuality);
273 this->drawCase3(canvas, kCol2X, kRow2Y, antiAlias, kHigh_SkFilterQuality);
274 this->drawCase4(canvas, kCol2X, kRow3Y, antiAlias, kHigh_SkFilterQuality);
275 this->drawCase5(canvas, kCol2X, kRow4Y, antiAlias, kHigh_SkFilterQuality);
Brian Salomon2a7eff92020-05-19 10:22:03 -0400276 }
bsalomon9003d1e2015-10-23 11:13:01 -0700277
John Stilescbe4e282020-06-01 10:38:31 -0400278 SkPoint innerCorners[] = {{0, 0}, {0, kBottom}, {kWidth, kBottom}, {kWidth, 0}};
279 matrix.mapPoints(innerCorners, 4);
280 SkScalar x = kBlockSize + std::max({innerCorners[0].fX, innerCorners[1].fX,
281 innerCorners[2].fX, innerCorners[3].fX});
Brian Osman788b9162020-02-07 10:36:46 -0500282 maxX = std::max(maxX, x);
bsalomon9003d1e2015-10-23 11:13:01 -0700283 canvas->restore();
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +0000284 }
commit-bot@chromium.orgd6ca4ac2013-11-22 20:34:59 +0000285 canvas->restore();
286 }
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000287 }
288
bsalomon4ee6bd82015-05-27 13:23:23 -0700289 void modifyGrContextOptions(GrContextOptions* options) override {
bsalomon8c07b7a2015-11-02 11:36:52 -0800290 options->fMaxTileSizeOverride = kMaxTileSize;
bsalomon4ee6bd82015-05-27 13:23:23 -0700291 }
bsalomon4ee6bd82015-05-27 13:23:23 -0700292
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000293private:
mtkleindbfd7ab2016-09-01 11:24:54 -0700294 static constexpr int kBlockSize = 70;
295 static constexpr int kBlockSpacing = 12;
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000296
mtkleindbfd7ab2016-09-01 11:24:54 -0700297 static constexpr int kCol0X = kBlockSpacing;
298 static constexpr int kCol1X = 2*kBlockSpacing + kBlockSize;
299 static constexpr int kCol2X = 3*kBlockSpacing + 2*kBlockSize;
Brian Salomonca769202020-05-18 16:40:59 -0400300 static constexpr int kWidth = 4*kBlockSpacing + 3*kBlockSize;
robertphillips@google.comd7ca6612013-08-20 12:09:32 +0000301
mtkleindbfd7ab2016-09-01 11:24:54 -0700302 static constexpr int kRow0Y = kBlockSpacing;
303 static constexpr int kRow1Y = 2*kBlockSpacing + kBlockSize;
304 static constexpr int kRow2Y = 3*kBlockSpacing + 2*kBlockSize;
305 static constexpr int kRow3Y = 4*kBlockSpacing + 3*kBlockSize;
306 static constexpr int kRow4Y = 5*kBlockSpacing + 4*kBlockSize;
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000307
mtkleindbfd7ab2016-09-01 11:24:54 -0700308 static constexpr int kSmallSize = 6;
309 static constexpr int kMaxTileSize = 32;
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000310
John Stilesd20a1342020-05-26 10:38:24 -0400311 SkString fShortName;
Brian Salomon6ef29332020-05-15 09:52:29 -0400312 sk_sp<SkImage> fBigImage;
313 sk_sp<SkImage> fSmallImage;
314 SkIRect fBigSrcRect;
315 SkIRect fSmallSrcRect;
Brian Salomonca769202020-05-18 16:40:59 -0400316 SkCanvas::SrcRectConstraint fConstraint;
John Stilesd20a1342020-05-26 10:38:24 -0400317 bool fBatch = false;
robertphillips@google.comaaa9b292013-07-25 21:34:00 +0000318 typedef GM INHERITED;
319};
320
John Stilesd20a1342020-05-26 10:38:24 -0400321DEF_GM(return new SrcRectConstraintGM("strict_constraint_no_red_allowed",
322 SkCanvas::kStrict_SrcRectConstraint,
323 /*batch=*/false););
324DEF_GM(return new SrcRectConstraintGM("strict_constraint_batch_no_red_allowed",
325 SkCanvas::kStrict_SrcRectConstraint,
326 /*batch=*/true););
327DEF_GM(return new SrcRectConstraintGM("fast_constraint_red_is_allowed",
328 SkCanvas::kFast_SrcRectConstraint,
329 /*batch=*/false););
reed2adecda2016-07-25 08:11:58 -0700330
331///////////////////////////////////////////////////////////////////////////////////////////////////
reed2adecda2016-07-25 08:11:58 -0700332
reed2adecda2016-07-25 08:11:58 -0700333// Construct an image and return the inner "src" rect. Build the image such that the interior is
334// blue, with a margin of blue (2px) but then an outer margin of red.
335//
336// Show that kFast_SrcRectConstraint sees even the red margin (due to mipmapping) when the image
337// is scaled down far enough.
338//
339static sk_sp<SkImage> make_image(SkCanvas* canvas, SkRect* srcR) {
egdaniel26318c92016-07-26 08:26:46 -0700340 // Intentially making the size a power of 2 to avoid the noise from how different GPUs will
341 // produce different mipmap filtering when we have an odd sized texture.
342 const int N = 10 + 2 + 8 + 2 + 10;
reed2adecda2016-07-25 08:11:58 -0700343 SkImageInfo info = SkImageInfo::MakeN32Premul(N, N);
Mike Kleinea3f0142019-03-20 11:12:10 -0500344 auto surface = ToolUtils::makeSurface(canvas, info);
reed2adecda2016-07-25 08:11:58 -0700345 SkCanvas* c = surface->getCanvas();
346 SkRect r = SkRect::MakeIWH(info.width(), info.height());
347 SkPaint paint;
348
349 paint.setColor(SK_ColorRED);
350 c->drawRect(r, paint);
egdaniel26318c92016-07-26 08:26:46 -0700351 r.inset(10, 10);
reed2adecda2016-07-25 08:11:58 -0700352 paint.setColor(SK_ColorBLUE);
353 c->drawRect(r, paint);
354
355 *srcR = r.makeInset(2, 2);
356 return surface->makeImageSnapshot();
357}
358
359DEF_SIMPLE_GM(bleed_downscale, canvas, 360, 240) {
360 SkRect src;
361 sk_sp<SkImage> img = make_image(canvas, &src);
362 SkPaint paint;
363
364 canvas->translate(10, 10);
365
366 const SkCanvas::SrcRectConstraint constraints[] = {
367 SkCanvas::kStrict_SrcRectConstraint, SkCanvas::kFast_SrcRectConstraint
368 };
369 const SkFilterQuality qualities[] = {
370 kNone_SkFilterQuality, kLow_SkFilterQuality, kMedium_SkFilterQuality
371 };
372 for (auto constraint : constraints) {
373 canvas->save();
374 for (auto quality : qualities) {
375 paint.setFilterQuality(quality);
Mike Kleinea3f0142019-03-20 11:12:10 -0500376 auto surf = ToolUtils::makeSurface(canvas, SkImageInfo::MakeN32Premul(1, 1));
reed2adecda2016-07-25 08:11:58 -0700377 surf->getCanvas()->drawImageRect(img, src, SkRect::MakeWH(1, 1), &paint, constraint);
378 // now blow up the 1 pixel result
379 canvas->drawImageRect(surf->makeImageSnapshot(), SkRect::MakeWH(100, 100), nullptr);
380 canvas->translate(120, 0);
381 }
382 canvas->restore();
383 canvas->translate(0, 120);
384 }
385}
386
387