blob: 52938c04dcd525a42fc07b6d9f25157ea9f33fe8 [file] [log] [blame]
scroggo@google.com7b056592013-11-05 15:57:21 +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
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.com8610d2c2013-11-05 21:10:58 +000022// This GM mimics a blurred RR seen in the wild.
scroggo@google.com7b056592013-11-05 15:57:21 +000023class BlurRoundRectGM : public skiagm::GM {
24public:
scroggo@google.com8610d2c2013-11-05 21:10:58 +000025 BlurRoundRectGM(int width, int height, int radius)
scroggo@google.com7b056592013-11-05 15:57:21 +000026 : fName("blurroundrect")
scroggo@google.com8610d2c2013-11-05 21:10:58 +000027 {
28 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
29 fRRect.setRectXY(r, SkIntToScalar(radius), SkIntToScalar(radius));
30 fName.appendf("-WH[%ix%i]-corner[%i]", width, height, radius);
31 }
32
33 BlurRoundRectGM(int width, int height)
34 : fName("blurroundrect") {
35 fName.appendf("-WH[%ix%i]-unevenCorners",
36 width, height);
scroggo@google.com7b056592013-11-05 15:57:21 +000037 SkVector radii[4];
scroggo@google.com8610d2c2013-11-05 21:10:58 +000038 radii[0].set(SkIntToScalar(30), SkIntToScalar(30));
39 radii[1].set(SkIntToScalar(10), SkIntToScalar(10));
40 radii[2].set(SkIntToScalar(30), SkIntToScalar(30));
41 radii[3].set(SkIntToScalar(10), SkIntToScalar(10));
42 SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
scroggo@google.com7b056592013-11-05 15:57:21 +000043 fRRect.setRectRadii(r, radii);
44 }
45
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +000046 virtual uint32_t onGetFlags() const SK_OVERRIDE {
47 return kSkipTiled_Flag;
48 }
49
scroggo@google.com7b056592013-11-05 15:57:21 +000050 virtual SkString onShortName() SK_OVERRIDE {
51 return fName;
52 }
53
54 virtual SkISize onISize() SK_OVERRIDE {
scroggo@google.com8610d2c2013-11-05 21:10:58 +000055 return SkISize::Make(SkScalarCeilToInt(fRRect.rect().width()),
56 SkScalarCeilToInt(fRRect.rect().height()));
scroggo@google.com7b056592013-11-05 15:57:21 +000057 }
58
59 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000060 SkLayerDrawLooper::Builder looperBuilder;
scroggo@google.com7b056592013-11-05 15:57:21 +000061 {
62 SkLayerDrawLooper::LayerInfo info;
scroggo@google.com8610d2c2013-11-05 21:10:58 +000063 info.fPaintBits = SkLayerDrawLooper::kMaskFilter_Bit
64 | SkLayerDrawLooper::kColorFilter_Bit;
scroggo@google.com7b056592013-11-05 15:57:21 +000065 info.fColorMode = SkXfermode::kSrc_Mode;
66 info.fOffset = SkPoint::Make(SkIntToScalar(-1), SkIntToScalar(0));
67 info.fPostTranslate = false;
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000068 SkPaint* paint = looperBuilder.addLayerOnTop(info);
robertphillips@google.com6c1e49a2013-11-10 15:08:45 +000069 SkMaskFilter* maskFilter = SkBlurMaskFilter::Create(
commit-bot@chromium.orge3964552014-04-28 16:25:35 +000070 kNormal_SkBlurStyle,
robertphillips@google.com6c1e49a2013-11-10 15:08:45 +000071 SkBlurMask::ConvertRadiusToSigma(SK_ScalarHalf),
scroggo@google.com7b056592013-11-05 15:57:21 +000072 SkBlurMaskFilter::kHighQuality_BlurFlag);
73 paint->setMaskFilter(maskFilter)->unref();
scroggo@google.com5fdef982013-11-05 16:28:38 +000074 SkColorFilter* colorFilter = SkColorFilter::CreateModeFilter(SK_ColorLTGRAY,
scroggo@google.com7b056592013-11-05 15:57:21 +000075 SkXfermode::kSrcIn_Mode);
76 paint->setColorFilter(colorFilter)->unref();
scroggo@google.com5fdef982013-11-05 16:28:38 +000077 paint->setColor(SK_ColorGRAY);
scroggo@google.com7b056592013-11-05 15:57:21 +000078 }
79 {
80 SkLayerDrawLooper::LayerInfo info;
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000081 looperBuilder.addLayerOnTop(info);
scroggo@google.com7b056592013-11-05 15:57:21 +000082 }
83 SkPaint paint;
scroggo@google.com8610d2c2013-11-05 21:10:58 +000084 canvas->drawRect(fRRect.rect(), paint);
scroggo@google.com7b056592013-11-05 15:57:21 +000085
commit-bot@chromium.org73cb1532014-04-15 15:48:36 +000086 paint.setLooper(looperBuilder.detachLooper())->unref();
scroggo@google.com5fdef982013-11-05 16:28:38 +000087 paint.setColor(SK_ColorCYAN);
scroggo@google.com7b056592013-11-05 15:57:21 +000088 paint.setAntiAlias(true);
89
scroggo@google.com8610d2c2013-11-05 21:10:58 +000090 canvas->drawRRect(fRRect, paint);
scroggo@google.com7b056592013-11-05 15:57:21 +000091 }
92
93private:
scroggo@google.com8610d2c2013-11-05 21:10:58 +000094 SkString fName;
95 SkRRect fRRect;
96
97 typedef skiagm::GM INHERITED;
scroggo@google.com7b056592013-11-05 15:57:21 +000098};
99
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000100// Simpler blurred RR test cases where all the radii are the same.
101class SimpleBlurRoundRectGM : public skiagm::GM {
scroggo@google.com7b056592013-11-05 15:57:21 +0000102public:
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000103 SimpleBlurRoundRectGM()
104 : fName("simpleblurroundrect") {
scroggo@google.com7b056592013-11-05 15:57:21 +0000105 }
106
107protected:
commit-bot@chromium.orga90c6802014-04-30 13:20:45 +0000108 virtual uint32_t onGetFlags() const SK_OVERRIDE {
109 return kSkipTiled_Flag;
110 }
111
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000112 virtual SkString onShortName() SK_OVERRIDE {
113 return fName;
114 }
115
116 virtual SkISize onISize() SK_OVERRIDE {
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000117 return SkISize::Make(950, 950);
scroggo@google.com7b056592013-11-05 15:57:21 +0000118 }
119
120 virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000121 canvas->scale(1.5f, 1.5f);
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000122 canvas->translate(50,50);
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000123
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000124 const float blurRadii[] = { 1,5,10,20 };
125 const int cornerRadii[] = { 1,5,10,20 };
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000126 const SkRect r = SkRect::MakeWH(SkIntToScalar(100), SkIntToScalar(100));
127 for (size_t i = 0; i < SK_ARRAY_COUNT(blurRadii); ++i) {
128 SkAutoCanvasRestore autoRestore(canvas, true);
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000129 canvas->translate(0, (r.height() + SkIntToScalar(50)) * i);
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000130 for (size_t j = 0; j < SK_ARRAY_COUNT(cornerRadii); ++j) {
robertphillips@google.com6c1e49a2013-11-10 15:08:45 +0000131 SkMaskFilter* filter = SkBlurMaskFilter::Create(
commit-bot@chromium.orge3964552014-04-28 16:25:35 +0000132 kNormal_SkBlurStyle,
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000133 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(blurRadii[i])),
134 SkBlurMaskFilter::kHighQuality_BlurFlag);
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000135 SkPaint paint;
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000136 paint.setColor(SK_ColorBLACK);
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000137 paint.setMaskFilter(filter)->unref();
138
139 SkRRect rrect;
140 rrect.setRectXY(r, SkIntToScalar(cornerRadii[j]), SkIntToScalar(cornerRadii[j]));
141 canvas->drawRRect(rrect, paint);
commit-bot@chromium.org3d8bf232014-04-28 19:49:24 +0000142 canvas->translate(r.width() + SkIntToScalar(50), 0);
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000143 }
144 }
scroggo@google.com7b056592013-11-05 15:57:21 +0000145 }
146private:
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000147 const SkString fName;
scroggo@google.com7b056592013-11-05 15:57:21 +0000148
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000149 typedef skiagm::GM INHERITED;
scroggo@google.com7b056592013-11-05 15:57:21 +0000150};
151
152// Create one with dimensions/rounded corners based on the skp
epoger@google.com7e6e80a2013-11-05 22:04:53 +0000153//
154// TODO(scroggo): Disabled in an attempt to rememdy
155// https://code.google.com/p/skia/issues/detail?id=1801 ('Win7 Test bots all failing GenerateGMs:
156// ran wrong number of tests')
157//DEF_GM(return new BlurRoundRectGM(600, 5514, 6);)
158
scroggo@google.com7b056592013-11-05 15:57:21 +0000159// Rounded rect with two opposite corners with large radii, the other two
160// small.
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000161DEF_GM(return new BlurRoundRectGM(100, 100);)
scroggo@google.com7b056592013-11-05 15:57:21 +0000162
scroggo@google.com8610d2c2013-11-05 21:10:58 +0000163DEF_GM(return new SimpleBlurRoundRectGM();)