scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
| 8 | #include "gm.h" |
| 9 | #include "SkBlurMask.h" |
| 10 | #include "SkBlurMaskFilter.h" |
| 11 | #include "SkCanvas.h" |
| 12 | #include "SkColorFilter.h" |
| 13 | #include "SkLayerDrawLooper.h" |
| 14 | #include "SkPaint.h" |
| 15 | #include "SkPath.h" |
| 16 | #include "SkPoint.h" |
| 17 | #include "SkRect.h" |
| 18 | #include "SkRRect.h" |
| 19 | #include "SkString.h" |
| 20 | #include "SkXfermode.h" |
| 21 | |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 22 | // This GM mimics a blurred RR seen in the wild. |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 23 | class BlurRoundRectGM : public skiagm::GM { |
| 24 | public: |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 25 | BlurRoundRectGM(int width, int height, int radius) |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 26 | : fName("blurroundrect") |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 27 | { |
| 28 | SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
| 29 | fRRect.setRectXY(r, SkIntToScalar(radius), SkIntToScalar(radius)); |
scroggo | ef470f1 | 2014-06-03 06:50:26 -0700 | [diff] [blame] | 30 | fName.appendf("-WH-%ix%i-corner-%i", width, height, radius); |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | BlurRoundRectGM(int width, int height) |
| 34 | : fName("blurroundrect") { |
scroggo | ef470f1 | 2014-06-03 06:50:26 -0700 | [diff] [blame] | 35 | fName.appendf("-WH-%ix%i-unevenCorners", width, height); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 36 | SkVector radii[4]; |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 37 | radii[0].set(SkIntToScalar(30), SkIntToScalar(30)); |
| 38 | radii[1].set(SkIntToScalar(10), SkIntToScalar(10)); |
| 39 | radii[2].set(SkIntToScalar(30), SkIntToScalar(30)); |
| 40 | radii[3].set(SkIntToScalar(10), SkIntToScalar(10)); |
| 41 | SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height)); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 42 | fRRect.setRectRadii(r, radii); |
| 43 | } |
| 44 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 45 | SkString onShortName() override { |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 46 | return fName; |
| 47 | } |
| 48 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 49 | SkISize onISize() override { |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 50 | return SkISize::Make(SkScalarCeilToInt(fRRect.rect().width()), |
| 51 | SkScalarCeilToInt(fRRect.rect().height())); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 52 | } |
| 53 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 54 | void onDraw(SkCanvas* canvas) override { |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 55 | SkLayerDrawLooper::Builder looperBuilder; |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 56 | { |
| 57 | SkLayerDrawLooper::LayerInfo info; |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 58 | info.fPaintBits = SkLayerDrawLooper::kMaskFilter_Bit |
| 59 | | SkLayerDrawLooper::kColorFilter_Bit; |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 60 | info.fColorMode = SkXfermode::kSrc_Mode; |
| 61 | info.fOffset = SkPoint::Make(SkIntToScalar(-1), SkIntToScalar(0)); |
| 62 | info.fPostTranslate = false; |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 63 | SkPaint* paint = looperBuilder.addLayerOnTop(info); |
robertphillips@google.com | 6c1e49a | 2013-11-10 15:08:45 +0000 | [diff] [blame] | 64 | SkMaskFilter* maskFilter = SkBlurMaskFilter::Create( |
commit-bot@chromium.org | e396455 | 2014-04-28 16:25:35 +0000 | [diff] [blame] | 65 | kNormal_SkBlurStyle, |
robertphillips@google.com | 6c1e49a | 2013-11-10 15:08:45 +0000 | [diff] [blame] | 66 | SkBlurMask::ConvertRadiusToSigma(SK_ScalarHalf), |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 67 | SkBlurMaskFilter::kHighQuality_BlurFlag); |
| 68 | paint->setMaskFilter(maskFilter)->unref(); |
scroggo@google.com | 5fdef98 | 2013-11-05 16:28:38 +0000 | [diff] [blame] | 69 | SkColorFilter* colorFilter = SkColorFilter::CreateModeFilter(SK_ColorLTGRAY, |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 70 | SkXfermode::kSrcIn_Mode); |
| 71 | paint->setColorFilter(colorFilter)->unref(); |
scroggo@google.com | 5fdef98 | 2013-11-05 16:28:38 +0000 | [diff] [blame] | 72 | paint->setColor(SK_ColorGRAY); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 73 | } |
| 74 | { |
| 75 | SkLayerDrawLooper::LayerInfo info; |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 76 | looperBuilder.addLayerOnTop(info); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 77 | } |
| 78 | SkPaint paint; |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 79 | canvas->drawRect(fRRect.rect(), paint); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 80 | |
commit-bot@chromium.org | 73cb153 | 2014-04-15 15:48:36 +0000 | [diff] [blame] | 81 | paint.setLooper(looperBuilder.detachLooper())->unref(); |
scroggo@google.com | 5fdef98 | 2013-11-05 16:28:38 +0000 | [diff] [blame] | 82 | paint.setColor(SK_ColorCYAN); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 83 | paint.setAntiAlias(true); |
| 84 | |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 85 | canvas->drawRRect(fRRect, paint); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | private: |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 89 | SkString fName; |
| 90 | SkRRect fRRect; |
| 91 | |
| 92 | typedef skiagm::GM INHERITED; |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 95 | #include "SkGradientShader.h" |
| 96 | /* |
| 97 | * Spits out a dummy gradient to test blur with shader on paint |
| 98 | */ |
| 99 | static SkShader* MakeRadial() { |
| 100 | SkPoint pts[2] = { |
| 101 | { 0, 0 }, |
| 102 | { SkIntToScalar(100), SkIntToScalar(100) } |
| 103 | }; |
| 104 | SkShader::TileMode tm = SkShader::kClamp_TileMode; |
| 105 | const SkColor colors[] = { SK_ColorRED, SK_ColorGREEN, }; |
| 106 | const SkScalar pos[] = { SK_Scalar1/4, SK_Scalar1*3/4 }; |
| 107 | SkMatrix scale; |
| 108 | scale.setScale(0.5f, 0.5f); |
| 109 | scale.postTranslate(5.f, 5.f); |
| 110 | SkPoint center0, center1; |
| 111 | center0.set(SkScalarAve(pts[0].fX, pts[1].fX), |
| 112 | SkScalarAve(pts[0].fY, pts[1].fY)); |
| 113 | center1.set(SkScalarInterp(pts[0].fX, pts[1].fX, SkIntToScalar(3)/5), |
| 114 | SkScalarInterp(pts[0].fY, pts[1].fY, SkIntToScalar(1)/4)); |
| 115 | return SkGradientShader::CreateTwoPointRadial(center1, (pts[1].fX - pts[0].fX) / 7, |
| 116 | center0, (pts[1].fX - pts[0].fX) / 2, |
| 117 | colors, pos, SK_ARRAY_COUNT(colors), tm, |
| 118 | 0, &scale); |
| 119 | } |
| 120 | |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 121 | // Simpler blurred RR test cases where all the radii are the same. |
| 122 | class SimpleBlurRoundRectGM : public skiagm::GM { |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 123 | public: |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 124 | SimpleBlurRoundRectGM() |
| 125 | : fName("simpleblurroundrect") { |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | protected: |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 129 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 130 | SkString onShortName() override { |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 131 | return fName; |
| 132 | } |
| 133 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 134 | SkISize onISize() override { |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 135 | return SkISize::Make(1000, 500); |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 136 | } |
| 137 | |
mtklein | 36352bf | 2015-03-25 18:17:31 -0700 | [diff] [blame] | 138 | void onDraw(SkCanvas* canvas) override { |
commit-bot@chromium.org | 4b413c8 | 2013-11-25 19:44:07 +0000 | [diff] [blame] | 139 | canvas->scale(1.5f, 1.5f); |
commit-bot@chromium.org | 3d8bf23 | 2014-04-28 19:49:24 +0000 | [diff] [blame] | 140 | canvas->translate(50,50); |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 141 | |
commit-bot@chromium.org | 3d8bf23 | 2014-04-28 19:49:24 +0000 | [diff] [blame] | 142 | const float blurRadii[] = { 1,5,10,20 }; |
| 143 | const int cornerRadii[] = { 1,5,10,20 }; |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 144 | const SkRect r = SkRect::MakeWH(SkIntToScalar(25), SkIntToScalar(25)); |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 145 | for (size_t i = 0; i < SK_ARRAY_COUNT(blurRadii); ++i) { |
| 146 | SkAutoCanvasRestore autoRestore(canvas, true); |
commit-bot@chromium.org | 3d8bf23 | 2014-04-28 19:49:24 +0000 | [diff] [blame] | 147 | canvas->translate(0, (r.height() + SkIntToScalar(50)) * i); |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 148 | for (size_t j = 0; j < SK_ARRAY_COUNT(cornerRadii); ++j) { |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 149 | for (int k = 0; k <= 1; k++) { |
| 150 | SkMaskFilter* filter = SkBlurMaskFilter::Create( |
| 151 | kNormal_SkBlurStyle, |
| 152 | SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(blurRadii[i])), |
| 153 | SkBlurMaskFilter::kHighQuality_BlurFlag); |
| 154 | SkPaint paint; |
| 155 | paint.setColor(SK_ColorBLACK); |
| 156 | paint.setMaskFilter(filter)->unref(); |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 157 | |
joshualitt | 341400e | 2014-12-18 11:54:13 -0800 | [diff] [blame] | 158 | bool useRadial = SkToBool(k); |
| 159 | if (useRadial) { |
| 160 | paint.setShader(MakeRadial())->unref(); |
| 161 | } |
| 162 | |
| 163 | SkRRect rrect; |
| 164 | rrect.setRectXY(r, SkIntToScalar(cornerRadii[j]), |
| 165 | SkIntToScalar(cornerRadii[j])); |
| 166 | canvas->drawRRect(rrect, paint); |
| 167 | canvas->translate(r.width() + SkIntToScalar(50), 0); |
| 168 | } |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 169 | } |
| 170 | } |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 171 | } |
| 172 | private: |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 173 | const SkString fName; |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 174 | |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 175 | typedef skiagm::GM INHERITED; |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | // Create one with dimensions/rounded corners based on the skp |
epoger@google.com | 7e6e80a | 2013-11-05 22:04:53 +0000 | [diff] [blame] | 179 | // |
| 180 | // TODO(scroggo): Disabled in an attempt to rememdy |
| 181 | // https://code.google.com/p/skia/issues/detail?id=1801 ('Win7 Test bots all failing GenerateGMs: |
| 182 | // ran wrong number of tests') |
| 183 | //DEF_GM(return new BlurRoundRectGM(600, 5514, 6);) |
| 184 | |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 185 | // Rounded rect with two opposite corners with large radii, the other two |
| 186 | // small. |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 187 | DEF_GM(return new BlurRoundRectGM(100, 100);) |
scroggo@google.com | 7b05659 | 2013-11-05 15:57:21 +0000 | [diff] [blame] | 188 | |
scroggo@google.com | 8610d2c | 2013-11-05 21:10:58 +0000 | [diff] [blame] | 189 | DEF_GM(return new SimpleBlurRoundRectGM();) |