blob: 7e58c1fe287a58b95e6c7084d2e18959687758a3 [file] [log] [blame]
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +00001/*
2 * Copyright 2014 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
joshualitt30ba4362014-08-21 20:18:45 -07008#include "gl/builders/GrGLProgramBuilder.h"
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +00009#include "GrRRectEffect.h"
10
joshualittb0a8a372014-09-23 09:50:21 -070011#include "gl/GrGLProcessor.h"
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +000012#include "gl/GrGLSL.h"
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +000013#include "GrConvexPolyEffect.h"
egdaniel605dd0f2014-11-12 08:35:25 -080014#include "GrInvariantOutput.h"
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +000015#include "GrOvalEffect.h"
joshualittb0a8a372014-09-23 09:50:21 -070016#include "GrTBackendProcessorFactory.h"
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +000017
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000018#include "SkRRect.h"
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +000019
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +000020// The effects defined here only handle rrect radii >= kRadiusMin.
21static const SkScalar kRadiusMin = SK_ScalarHalf;
22
23//////////////////////////////////////////////////////////////////////////////
24
commit-bot@chromium.org4355f212014-03-12 15:32:50 +000025class GLCircularRRectEffect;
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +000026
joshualittb0a8a372014-09-23 09:50:21 -070027class CircularRRectEffect : public GrFragmentProcessor {
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000028public:
skia.committer@gmail.comf1f66c02014-03-05 03:02:06 +000029
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +000030 enum CornerFlags {
31 kTopLeft_CornerFlag = (1 << SkRRect::kUpperLeft_Corner),
32 kTopRight_CornerFlag = (1 << SkRRect::kUpperRight_Corner),
33 kBottomRight_CornerFlag = (1 << SkRRect::kLowerRight_Corner),
34 kBottomLeft_CornerFlag = (1 << SkRRect::kLowerLeft_Corner),
35
36 kLeft_CornerFlags = kTopLeft_CornerFlag | kBottomLeft_CornerFlag,
37 kTop_CornerFlags = kTopLeft_CornerFlag | kTopRight_CornerFlag,
38 kRight_CornerFlags = kTopRight_CornerFlag | kBottomRight_CornerFlag,
39 kBottom_CornerFlags = kBottomLeft_CornerFlag | kBottomRight_CornerFlag,
40
41 kAll_CornerFlags = kTopLeft_CornerFlag | kTopRight_CornerFlag |
42 kBottomLeft_CornerFlag | kBottomRight_CornerFlag,
43
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +000044 kNone_CornerFlags = 0
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +000045 };
46
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +000047 // The flags are used to indicate which corners are circluar (unflagged corners are assumed to
48 // be square).
joshualittb0a8a372014-09-23 09:50:21 -070049 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, uint32_t circularCornerFlags,
50 const SkRRect&);
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000051
commit-bot@chromium.org4355f212014-03-12 15:32:50 +000052 virtual ~CircularRRectEffect() {};
53 static const char* Name() { return "CircularRRect"; }
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000054
55 const SkRRect& getRRect() const { return fRRect; }
56
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +000057 uint32_t getCircularCornerFlags() const { return fCircularCornerFlags; }
skia.committer@gmail.com06acb582014-03-06 03:02:32 +000058
joshualittb0a8a372014-09-23 09:50:21 -070059 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +000060
joshualittb0a8a372014-09-23 09:50:21 -070061 typedef GLCircularRRectEffect GLProcessor;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000062
joshualittb0a8a372014-09-23 09:50:21 -070063 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERRIDE;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000064
65private:
joshualittb0a8a372014-09-23 09:50:21 -070066 CircularRRectEffect(GrPrimitiveEdgeType, uint32_t circularCornerFlags, const SkRRect&);
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000067
bsalomon0e08fc12014-10-15 08:19:04 -070068 virtual bool onIsEqual(const GrFragmentProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000069
egdaniel605dd0f2014-11-12 08:35:25 -080070 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE;
egdaniel1a8ecdf2014-10-03 06:24:12 -070071
joshualittb0a8a372014-09-23 09:50:21 -070072 SkRRect fRRect;
73 GrPrimitiveEdgeType fEdgeType;
74 uint32_t fCircularCornerFlags;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000075
joshualittb0a8a372014-09-23 09:50:21 -070076 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000077
joshualittb0a8a372014-09-23 09:50:21 -070078 typedef GrFragmentProcessor INHERITED;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000079};
80
joshualittb0a8a372014-09-23 09:50:21 -070081GrFragmentProcessor* CircularRRectEffect::Create(GrPrimitiveEdgeType edgeType,
82 uint32_t circularCornerFlags,
83 const SkRRect& rrect) {
84 if (kFillAA_GrProcessorEdgeType != edgeType && kInverseFillAA_GrProcessorEdgeType != edgeType) {
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +000085 return NULL;
86 }
bsalomon55fad7a2014-07-08 07:34:20 -070087 return SkNEW_ARGS(CircularRRectEffect, (edgeType, circularCornerFlags, rrect));
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000088}
89
egdaniel605dd0f2014-11-12 08:35:25 -080090void CircularRRectEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const {
egdanielccb2e382014-10-13 12:53:46 -070091 inout->mulByUnknownAlpha();
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000092}
93
joshualittb0a8a372014-09-23 09:50:21 -070094const GrBackendFragmentProcessorFactory& CircularRRectEffect::getFactory() const {
95 return GrTBackendFragmentProcessorFactory<CircularRRectEffect>::getInstance();
commit-bot@chromium.orge5280892014-02-21 17:52:29 +000096}
97
joshualittb0a8a372014-09-23 09:50:21 -070098CircularRRectEffect::CircularRRectEffect(GrPrimitiveEdgeType edgeType, uint32_t circularCornerFlags,
99 const SkRRect& rrect)
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000100 : fRRect(rrect)
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000101 , fEdgeType(edgeType)
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000102 , fCircularCornerFlags(circularCornerFlags) {
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000103 this->setWillReadFragmentPosition();
104}
105
bsalomon0e08fc12014-10-15 08:19:04 -0700106bool CircularRRectEffect::onIsEqual(const GrFragmentProcessor& other) const {
joshualitt49586be2014-09-16 08:21:41 -0700107 const CircularRRectEffect& crre = other.cast<CircularRRectEffect>();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000108 // The corner flags are derived from fRRect, so no need to check them.
109 return fEdgeType == crre.fEdgeType && fRRect == crre.fRRect;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000110}
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000111
112//////////////////////////////////////////////////////////////////////////////
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000113
joshualittb0a8a372014-09-23 09:50:21 -0700114GR_DEFINE_FRAGMENT_PROCESSOR_TEST(CircularRRectEffect);
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000115
joshualittb0a8a372014-09-23 09:50:21 -0700116GrFragmentProcessor* CircularRRectEffect::TestCreate(SkRandom* random,
117 GrContext*,
118 const GrDrawTargetCaps& caps,
119 GrTexture*[]) {
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000120 SkScalar w = random->nextRangeScalar(20.f, 1000.f);
121 SkScalar h = random->nextRangeScalar(20.f, 1000.f);
122 SkScalar r = random->nextRangeF(kRadiusMin, 9.f);
123 SkRRect rrect;
124 rrect.setRectXY(SkRect::MakeWH(w, h), r, r);
joshualittb0a8a372014-09-23 09:50:21 -0700125 GrFragmentProcessor* fp;
commit-bot@chromium.orgcabf4b22014-03-05 18:27:43 +0000126 do {
joshualittb0a8a372014-09-23 09:50:21 -0700127 GrPrimitiveEdgeType et =
128 (GrPrimitiveEdgeType)random->nextULessThan(kGrProcessorEdgeTypeCnt);
129 fp = GrRRectEffect::Create(et, rrect);
130 } while (NULL == fp);
131 return fp;
commit-bot@chromium.orge5280892014-02-21 17:52:29 +0000132}
133
134//////////////////////////////////////////////////////////////////////////////
135
joshualittb0a8a372014-09-23 09:50:21 -0700136class GLCircularRRectEffect : public GrGLFragmentProcessor {
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000137public:
joshualittb0a8a372014-09-23 09:50:21 -0700138 GLCircularRRectEffect(const GrBackendProcessorFactory&, const GrProcessor&);
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000139
joshualitt15988992014-10-09 15:04:05 -0700140 virtual void emitCode(GrGLFPBuilder* builder,
joshualittb0a8a372014-09-23 09:50:21 -0700141 const GrFragmentProcessor& fp,
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000142 const char* outputColor,
143 const char* inputColor,
144 const TransformedCoordsArray&,
145 const TextureSamplerArray&) SK_OVERRIDE;
146
joshualittb0a8a372014-09-23 09:50:21 -0700147 static inline void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilder*);
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000148
joshualittb0a8a372014-09-23 09:50:21 -0700149 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000150
151private:
kkinnunen7510b222014-07-30 00:04:16 -0700152 GrGLProgramDataManager::UniformHandle fInnerRectUniform;
153 GrGLProgramDataManager::UniformHandle fRadiusPlusHalfUniform;
154 SkRRect fPrevRRect;
joshualittb0a8a372014-09-23 09:50:21 -0700155 typedef GrGLFragmentProcessor INHERITED;
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000156};
157
joshualittb0a8a372014-09-23 09:50:21 -0700158GLCircularRRectEffect::GLCircularRRectEffect(const GrBackendProcessorFactory& factory,
159 const GrProcessor& )
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000160 : INHERITED (factory) {
161 fPrevRRect.setEmpty();
162}
163
joshualitt15988992014-10-09 15:04:05 -0700164void GLCircularRRectEffect::emitCode(GrGLFPBuilder* builder,
joshualitt267ce482014-11-25 14:52:21 -0800165 const GrFragmentProcessor& fp,
166 const char* outputColor,
167 const char* inputColor,
168 const TransformedCoordsArray&,
169 const TextureSamplerArray& samplers) {
joshualittb0a8a372014-09-23 09:50:21 -0700170 const CircularRRectEffect& crre = fp.cast<CircularRRectEffect>();
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000171 const char *rectName;
172 const char *radiusPlusHalfName;
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000173 // The inner rect is the rrect bounds inset by the radius. Its left, top, right, and bottom
174 // edges correspond to components x, y, z, and w, respectively. When a side of the rrect has
175 // only rectangular corners, that side's value corresponds to the rect edge's value outset by
176 // half a pixel.
joshualitt30ba4362014-08-21 20:18:45 -0700177 fInnerRectUniform = builder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000178 kVec4f_GrSLType,
179 "innerRect",
180 &rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700181 fRadiusPlusHalfUniform = builder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000182 kFloat_GrSLType,
183 "radiusPlusHalf",
184 &radiusPlusHalfName);
joshualitt30ba4362014-08-21 20:18:45 -0700185
joshualitt15988992014-10-09 15:04:05 -0700186 GrGLFPFragmentBuilder* fsBuilder = builder->getFragmentShaderBuilder();
joshualitt30ba4362014-08-21 20:18:45 -0700187 const char* fragmentPos = fsBuilder->fragmentPosition();
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000188 // At each quarter-circle corner we compute a vector that is the offset of the fragment position
189 // from the circle center. The vector is pinned in x and y to be in the quarter-plane relevant
190 // to that corner. This means that points near the interior near the rrect top edge will have
191 // a vector that points straight up for both the TL left and TR corners. Computing an
192 // alpha from this vector at either the TR or TL corner will give the correct result. Similarly,
193 // fragments near the other three edges will get the correct AA. Fragments in the interior of
194 // the rrect will have a (0,0) vector at all four corners. So long as the radius > 0.5 they will
195 // correctly produce an alpha value of 1 at all four corners. We take the min of all the alphas.
196 // The code below is a simplified version of the above that performs maxs on the vector
197 // components before computing distances and alpha values so that only one distance computation
198 // need be computed to determine the min alpha.
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000199 //
200 // For the cases where one half of the rrect is rectangular we drop one of the x or y
201 // computations, compute a separate rect edge alpha for the rect side, and mul the two computed
202 // alphas together.
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000203 switch (crre.getCircularCornerFlags()) {
204 case CircularRRectEffect::kAll_CornerFlags:
joshualitt30ba4362014-08-21 20:18:45 -0700205 fsBuilder->codeAppendf("\t\tvec2 dxy0 = %s.xy - %s.xy;\n", rectName, fragmentPos);
206 fsBuilder->codeAppendf("\t\tvec2 dxy1 = %s.xy - %s.zw;\n", fragmentPos, rectName);
207 fsBuilder->codeAppend("\t\tvec2 dxy = max(max(dxy0, dxy1), 0.0);\n");
208 fsBuilder->codeAppendf("\t\tfloat alpha = clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000209 radiusPlusHalfName);
210 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000211 case CircularRRectEffect::kTopLeft_CornerFlag:
joshualitt30ba4362014-08-21 20:18:45 -0700212 fsBuilder->codeAppendf("\t\tvec2 dxy = max(%s.xy - %s.xy, 0.0);\n",
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000213 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700214 fsBuilder->codeAppendf("\t\tfloat rightAlpha = clamp(%s.z - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000215 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700216 fsBuilder->codeAppendf("\t\tfloat bottomAlpha = clamp(%s.w - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000217 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700218 fsBuilder->codeAppendf("\t\tfloat alpha = bottomAlpha * rightAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000219 radiusPlusHalfName);
220 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000221 case CircularRRectEffect::kTopRight_CornerFlag:
joshualitt30ba4362014-08-21 20:18:45 -0700222 fsBuilder->codeAppendf("\t\tvec2 dxy = max(vec2(%s.x - %s.z, %s.y - %s.y), 0.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000223 fragmentPos, rectName, rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700224 fsBuilder->codeAppendf("\t\tfloat leftAlpha = clamp(%s.x - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000225 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700226 fsBuilder->codeAppendf("\t\tfloat bottomAlpha = clamp(%s.w - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000227 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700228 fsBuilder->codeAppendf("\t\tfloat alpha = bottomAlpha * leftAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000229 radiusPlusHalfName);
230 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000231 case CircularRRectEffect::kBottomRight_CornerFlag:
joshualitt30ba4362014-08-21 20:18:45 -0700232 fsBuilder->codeAppendf("\t\tvec2 dxy = max(%s.xy - %s.zw, 0.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000233 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700234 fsBuilder->codeAppendf("\t\tfloat leftAlpha = clamp(%s.x - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000235 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700236 fsBuilder->codeAppendf("\t\tfloat topAlpha = clamp(%s.y - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000237 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700238 fsBuilder->codeAppendf("\t\tfloat alpha = topAlpha * leftAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000239 radiusPlusHalfName);
240 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000241 case CircularRRectEffect::kBottomLeft_CornerFlag:
joshualitt30ba4362014-08-21 20:18:45 -0700242 fsBuilder->codeAppendf("\t\tvec2 dxy = max(vec2(%s.x - %s.x, %s.y - %s.w), 0.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000243 rectName, fragmentPos, fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700244 fsBuilder->codeAppendf("\t\tfloat rightAlpha = clamp(%s.z - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000245 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700246 fsBuilder->codeAppendf("\t\tfloat topAlpha = clamp(%s.y - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000247 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700248 fsBuilder->codeAppendf("\t\tfloat alpha = topAlpha * rightAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000249 radiusPlusHalfName);
250 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000251 case CircularRRectEffect::kLeft_CornerFlags:
joshualitt30ba4362014-08-21 20:18:45 -0700252 fsBuilder->codeAppendf("\t\tvec2 dxy0 = %s.xy - %s.xy;\n", rectName, fragmentPos);
253 fsBuilder->codeAppendf("\t\tfloat dy1 = %s.y - %s.w;\n", fragmentPos, rectName);
254 fsBuilder->codeAppend("\t\tvec2 dxy = max(vec2(dxy0.x, max(dxy0.y, dy1)), 0.0);\n");
255 fsBuilder->codeAppendf("\t\tfloat rightAlpha = clamp(%s.z - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000256 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700257 fsBuilder->codeAppendf("\t\tfloat alpha = rightAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000258 radiusPlusHalfName);
259 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000260 case CircularRRectEffect::kTop_CornerFlags:
joshualitt30ba4362014-08-21 20:18:45 -0700261 fsBuilder->codeAppendf("\t\tvec2 dxy0 = %s.xy - %s.xy;\n", rectName, fragmentPos);
262 fsBuilder->codeAppendf("\t\tfloat dx1 = %s.x - %s.z;\n", fragmentPos, rectName);
263 fsBuilder->codeAppend("\t\tvec2 dxy = max(vec2(max(dxy0.x, dx1), dxy0.y), 0.0);\n");
264 fsBuilder->codeAppendf("\t\tfloat bottomAlpha = clamp(%s.w - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000265 rectName, fragmentPos);
joshualitt30ba4362014-08-21 20:18:45 -0700266 fsBuilder->codeAppendf("\t\tfloat alpha = bottomAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000267 radiusPlusHalfName);
268 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000269 case CircularRRectEffect::kRight_CornerFlags:
joshualitt30ba4362014-08-21 20:18:45 -0700270 fsBuilder->codeAppendf("\t\tfloat dy0 = %s.y - %s.y;\n", rectName, fragmentPos);
271 fsBuilder->codeAppendf("\t\tvec2 dxy1 = %s.xy - %s.zw;\n", fragmentPos, rectName);
272 fsBuilder->codeAppend("\t\tvec2 dxy = max(vec2(dxy1.x, max(dy0, dxy1.y)), 0.0);\n");
273 fsBuilder->codeAppendf("\t\tfloat leftAlpha = clamp(%s.x - %s.x, 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000274 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700275 fsBuilder->codeAppendf("\t\tfloat alpha = leftAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000276 radiusPlusHalfName);
277 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000278 case CircularRRectEffect::kBottom_CornerFlags:
joshualitt30ba4362014-08-21 20:18:45 -0700279 fsBuilder->codeAppendf("\t\tfloat dx0 = %s.x - %s.x;\n", rectName, fragmentPos);
280 fsBuilder->codeAppendf("\t\tvec2 dxy1 = %s.xy - %s.zw;\n", fragmentPos, rectName);
281 fsBuilder->codeAppend("\t\tvec2 dxy = max(vec2(max(dx0, dxy1.x), dxy1.y), 0.0);\n");
282 fsBuilder->codeAppendf("\t\tfloat topAlpha = clamp(%s.y - %s.y, 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000283 fragmentPos, rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700284 fsBuilder->codeAppendf("\t\tfloat alpha = topAlpha * clamp(%s - length(dxy), 0.0, 1.0);\n",
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000285 radiusPlusHalfName);
286 break;
287 }
skia.committer@gmail.com06acb582014-03-06 03:02:32 +0000288
joshualittb0a8a372014-09-23 09:50:21 -0700289 if (kInverseFillAA_GrProcessorEdgeType == crre.getEdgeType()) {
joshualitt30ba4362014-08-21 20:18:45 -0700290 fsBuilder->codeAppend("\t\talpha = 1.0 - alpha;\n");
commit-bot@chromium.orgfbde87f2014-03-04 16:25:34 +0000291 }
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000292
joshualitt30ba4362014-08-21 20:18:45 -0700293 fsBuilder->codeAppendf("\t\t%s = %s;\n", outputColor,
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000294 (GrGLSLExpr4(inputColor) * GrGLSLExpr1("alpha")).c_str());
295}
296
joshualittb0a8a372014-09-23 09:50:21 -0700297void GLCircularRRectEffect::GenKey(const GrProcessor& processor, const GrGLCaps&,
298 GrProcessorKeyBuilder* b) {
299 const CircularRRectEffect& crre = processor.cast<CircularRRectEffect>();
300 GR_STATIC_ASSERT(kGrProcessorEdgeTypeCnt <= 8);
bsalomon63e99f72014-07-21 08:03:14 -0700301 b->add32((crre.getCircularCornerFlags() << 3) | crre.getEdgeType());
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000302}
303
kkinnunen7510b222014-07-30 00:04:16 -0700304void GLCircularRRectEffect::setData(const GrGLProgramDataManager& pdman,
joshualittb0a8a372014-09-23 09:50:21 -0700305 const GrProcessor& processor) {
306 const CircularRRectEffect& crre = processor.cast<CircularRRectEffect>();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000307 const SkRRect& rrect = crre.getRRect();
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000308 if (rrect != fPrevRRect) {
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000309 SkRect rect = rrect.getBounds();
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000310 SkScalar radius = 0;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000311 switch (crre.getCircularCornerFlags()) {
312 case CircularRRectEffect::kAll_CornerFlags:
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000313 SkASSERT(rrect.isSimpleCircular());
314 radius = rrect.getSimpleRadii().fX;
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000315 SkASSERT(radius >= kRadiusMin);
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000316 rect.inset(radius, radius);
317 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000318 case CircularRRectEffect::kTopLeft_CornerFlag:
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000319 radius = rrect.radii(SkRRect::kUpperLeft_Corner).fX;
320 rect.fLeft += radius;
321 rect.fTop += radius;
322 rect.fRight += 0.5f;
323 rect.fBottom += 0.5f;
324 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000325 case CircularRRectEffect::kTopRight_CornerFlag:
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000326 radius = rrect.radii(SkRRect::kUpperRight_Corner).fX;
bsalomon@google.comde9f2512014-03-11 17:09:17 +0000327 rect.fLeft -= 0.5f;
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000328 rect.fTop += radius;
329 rect.fRight -= radius;
330 rect.fBottom += 0.5f;
331 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000332 case CircularRRectEffect::kBottomRight_CornerFlag:
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000333 radius = rrect.radii(SkRRect::kLowerRight_Corner).fX;
bsalomon@google.comde9f2512014-03-11 17:09:17 +0000334 rect.fLeft -= 0.5f;
335 rect.fTop -= 0.5f;
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000336 rect.fRight -= radius;
337 rect.fBottom -= radius;
338 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000339 case CircularRRectEffect::kBottomLeft_CornerFlag:
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000340 radius = rrect.radii(SkRRect::kLowerLeft_Corner).fX;
341 rect.fLeft += radius;
bsalomon@google.comde9f2512014-03-11 17:09:17 +0000342 rect.fTop -= 0.5f;
343 rect.fRight += 0.5f;
commit-bot@chromium.orgc5c748c2014-03-11 15:54:51 +0000344 rect.fBottom -= radius;
345 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000346 case CircularRRectEffect::kLeft_CornerFlags:
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000347 radius = rrect.radii(SkRRect::kUpperLeft_Corner).fX;
348 rect.fLeft += radius;
349 rect.fTop += radius;
350 rect.fRight += 0.5f;
351 rect.fBottom -= radius;
352 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000353 case CircularRRectEffect::kTop_CornerFlags:
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000354 radius = rrect.radii(SkRRect::kUpperLeft_Corner).fX;
355 rect.fLeft += radius;
356 rect.fTop += radius;
357 rect.fRight -= radius;
358 rect.fBottom += 0.5f;
359 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000360 case CircularRRectEffect::kRight_CornerFlags:
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000361 radius = rrect.radii(SkRRect::kUpperRight_Corner).fX;
362 rect.fLeft -= 0.5f;
363 rect.fTop += radius;
364 rect.fRight -= radius;
365 rect.fBottom -= radius;
366 break;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000367 case CircularRRectEffect::kBottom_CornerFlags:
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000368 radius = rrect.radii(SkRRect::kLowerLeft_Corner).fX;
369 rect.fLeft += radius;
370 rect.fTop -= 0.5f;
371 rect.fRight -= radius;
372 rect.fBottom -= radius;
373 break;
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000374 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000375 SkFAIL("Should have been one of the above cases.");
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000376 }
kkinnunen7510b222014-07-30 00:04:16 -0700377 pdman.set4f(fInnerRectUniform, rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
378 pdman.set1f(fRadiusPlusHalfUniform, radius + 0.5f);
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000379 fPrevRRect = rrect;
380 }
381}
382
383//////////////////////////////////////////////////////////////////////////////
384
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000385class GLEllipticalRRectEffect;
386
joshualittb0a8a372014-09-23 09:50:21 -0700387class EllipticalRRectEffect : public GrFragmentProcessor {
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000388public:
joshualittb0a8a372014-09-23 09:50:21 -0700389 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRRect&);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000390
391 virtual ~EllipticalRRectEffect() {};
392 static const char* Name() { return "EllipticalRRect"; }
393
394 const SkRRect& getRRect() const { return fRRect; }
395
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000396
joshualittb0a8a372014-09-23 09:50:21 -0700397 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000398
joshualittb0a8a372014-09-23 09:50:21 -0700399 typedef GLEllipticalRRectEffect GLProcessor;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000400
joshualittb0a8a372014-09-23 09:50:21 -0700401 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERRIDE;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000402
403private:
joshualittb0a8a372014-09-23 09:50:21 -0700404 EllipticalRRectEffect(GrPrimitiveEdgeType, const SkRRect&);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000405
bsalomon0e08fc12014-10-15 08:19:04 -0700406 virtual bool onIsEqual(const GrFragmentProcessor& other) const SK_OVERRIDE;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000407
egdaniel605dd0f2014-11-12 08:35:25 -0800408 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE;
egdaniel1a8ecdf2014-10-03 06:24:12 -0700409
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000410 SkRRect fRRect;
joshualittb0a8a372014-09-23 09:50:21 -0700411 GrPrimitiveEdgeType fEdgeType;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000412
joshualittb0a8a372014-09-23 09:50:21 -0700413 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000414
joshualittb0a8a372014-09-23 09:50:21 -0700415 typedef GrFragmentProcessor INHERITED;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000416};
417
joshualittb0a8a372014-09-23 09:50:21 -0700418GrFragmentProcessor*
419EllipticalRRectEffect::Create(GrPrimitiveEdgeType edgeType, const SkRRect& rrect) {
420 if (kFillAA_GrProcessorEdgeType != edgeType && kInverseFillAA_GrProcessorEdgeType != edgeType) {
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +0000421 return NULL;
422 }
bsalomon55fad7a2014-07-08 07:34:20 -0700423 return SkNEW_ARGS(EllipticalRRectEffect, (edgeType, rrect));
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000424}
425
egdaniel605dd0f2014-11-12 08:35:25 -0800426void EllipticalRRectEffect::onComputeInvariantOutput(GrInvariantOutput* inout) const {
egdanielccb2e382014-10-13 12:53:46 -0700427 inout->mulByUnknownAlpha();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000428}
429
joshualittb0a8a372014-09-23 09:50:21 -0700430const GrBackendFragmentProcessorFactory& EllipticalRRectEffect::getFactory() const {
431 return GrTBackendFragmentProcessorFactory<EllipticalRRectEffect>::getInstance();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000432}
433
joshualittb0a8a372014-09-23 09:50:21 -0700434EllipticalRRectEffect::EllipticalRRectEffect(GrPrimitiveEdgeType edgeType, const SkRRect& rrect)
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000435 : fRRect(rrect)
436 , fEdgeType(edgeType){
437 this->setWillReadFragmentPosition();
438}
439
bsalomon0e08fc12014-10-15 08:19:04 -0700440bool EllipticalRRectEffect::onIsEqual(const GrFragmentProcessor& other) const {
joshualitt49586be2014-09-16 08:21:41 -0700441 const EllipticalRRectEffect& erre = other.cast<EllipticalRRectEffect>();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000442 return fEdgeType == erre.fEdgeType && fRRect == erre.fRRect;
443}
444
445//////////////////////////////////////////////////////////////////////////////
446
joshualittb0a8a372014-09-23 09:50:21 -0700447GR_DEFINE_FRAGMENT_PROCESSOR_TEST(EllipticalRRectEffect);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000448
joshualittb0a8a372014-09-23 09:50:21 -0700449GrFragmentProcessor* EllipticalRRectEffect::TestCreate(SkRandom* random,
450 GrContext*,
451 const GrDrawTargetCaps& caps,
452 GrTexture*[]) {
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000453 SkScalar w = random->nextRangeScalar(20.f, 1000.f);
454 SkScalar h = random->nextRangeScalar(20.f, 1000.f);
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000455 SkVector r[4];
456 r[SkRRect::kUpperLeft_Corner].fX = random->nextRangeF(kRadiusMin, 9.f);
457 // ensure at least one corner really is elliptical
458 do {
459 r[SkRRect::kUpperLeft_Corner].fY = random->nextRangeF(kRadiusMin, 9.f);
460 } while (r[SkRRect::kUpperLeft_Corner].fY == r[SkRRect::kUpperLeft_Corner].fX);
461
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000462 SkRRect rrect;
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000463 if (random->nextBool()) {
464 // half the time create a four-radii rrect.
465 r[SkRRect::kLowerRight_Corner].fX = random->nextRangeF(kRadiusMin, 9.f);
466 r[SkRRect::kLowerRight_Corner].fY = random->nextRangeF(kRadiusMin, 9.f);
467
468 r[SkRRect::kUpperRight_Corner].fX = r[SkRRect::kLowerRight_Corner].fX;
469 r[SkRRect::kUpperRight_Corner].fY = r[SkRRect::kUpperLeft_Corner].fY;
470
471 r[SkRRect::kLowerLeft_Corner].fX = r[SkRRect::kUpperLeft_Corner].fX;
472 r[SkRRect::kLowerLeft_Corner].fY = r[SkRRect::kLowerRight_Corner].fY;
473
474 rrect.setRectRadii(SkRect::MakeWH(w, h), r);
475 } else {
476 rrect.setRectXY(SkRect::MakeWH(w, h), r[SkRRect::kUpperLeft_Corner].fX,
477 r[SkRRect::kUpperLeft_Corner].fY);
478 }
joshualittb0a8a372014-09-23 09:50:21 -0700479 GrFragmentProcessor* fp;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000480 do {
joshualittb0a8a372014-09-23 09:50:21 -0700481 GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)random->nextULessThan(kGrProcessorEdgeTypeCnt);
482 fp = GrRRectEffect::Create(et, rrect);
483 } while (NULL == fp);
484 return fp;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000485}
486
487//////////////////////////////////////////////////////////////////////////////
488
joshualittb0a8a372014-09-23 09:50:21 -0700489class GLEllipticalRRectEffect : public GrGLFragmentProcessor {
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000490public:
joshualittb0a8a372014-09-23 09:50:21 -0700491 GLEllipticalRRectEffect(const GrBackendProcessorFactory&, const GrProcessor&);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000492
joshualitt15988992014-10-09 15:04:05 -0700493 virtual void emitCode(GrGLFPBuilder* builder,
joshualittb0a8a372014-09-23 09:50:21 -0700494 const GrFragmentProcessor& effect,
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000495 const char* outputColor,
496 const char* inputColor,
497 const TransformedCoordsArray&,
498 const TextureSamplerArray&) SK_OVERRIDE;
499
joshualittb0a8a372014-09-23 09:50:21 -0700500 static inline void GenKey(const GrProcessor&, const GrGLCaps&, GrProcessorKeyBuilder*);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000501
joshualittb0a8a372014-09-23 09:50:21 -0700502 virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000503
504private:
kkinnunen7510b222014-07-30 00:04:16 -0700505 GrGLProgramDataManager::UniformHandle fInnerRectUniform;
506 GrGLProgramDataManager::UniformHandle fInvRadiiSqdUniform;
507 SkRRect fPrevRRect;
joshualittb0a8a372014-09-23 09:50:21 -0700508 typedef GrGLFragmentProcessor INHERITED;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000509};
510
joshualittb0a8a372014-09-23 09:50:21 -0700511GLEllipticalRRectEffect::GLEllipticalRRectEffect(const GrBackendProcessorFactory& factory,
512 const GrProcessor& effect)
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000513 : INHERITED (factory) {
514 fPrevRRect.setEmpty();
515}
516
joshualitt15988992014-10-09 15:04:05 -0700517void GLEllipticalRRectEffect::emitCode(GrGLFPBuilder* builder,
joshualittb0a8a372014-09-23 09:50:21 -0700518 const GrFragmentProcessor& effect,
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000519 const char* outputColor,
520 const char* inputColor,
521 const TransformedCoordsArray&,
522 const TextureSamplerArray& samplers) {
joshualitt49586be2014-09-16 08:21:41 -0700523 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000524 const char *rectName;
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000525 // The inner rect is the rrect bounds inset by the x/y radii
joshualitt30ba4362014-08-21 20:18:45 -0700526 fInnerRectUniform = builder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000527 kVec4f_GrSLType,
528 "innerRect",
529 &rectName);
joshualitt30ba4362014-08-21 20:18:45 -0700530
joshualitt15988992014-10-09 15:04:05 -0700531 GrGLFPFragmentBuilder* fsBuilder = builder->getFragmentShaderBuilder();
joshualitt30ba4362014-08-21 20:18:45 -0700532 const char* fragmentPos = fsBuilder->fragmentPosition();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000533 // At each quarter-ellipse corner we compute a vector that is the offset of the fragment pos
534 // to the ellipse center. The vector is pinned in x and y to be in the quarter-plane relevant
535 // to that corner. This means that points near the interior near the rrect top edge will have
536 // a vector that points straight up for both the TL left and TR corners. Computing an
537 // alpha from this vector at either the TR or TL corner will give the correct result. Similarly,
538 // fragments near the other three edges will get the correct AA. Fragments in the interior of
539 // the rrect will have a (0,0) vector at all four corners. So long as the radii > 0.5 they will
540 // correctly produce an alpha value of 1 at all four corners. We take the min of all the alphas.
541 // The code below is a simplified version of the above that performs maxs on the vector
542 // components before computing distances and alpha values so that only one distance computation
543 // need be computed to determine the min alpha.
joshualitt30ba4362014-08-21 20:18:45 -0700544 fsBuilder->codeAppendf("\t\tvec2 dxy0 = %s.xy - %s.xy;\n", rectName, fragmentPos);
545 fsBuilder->codeAppendf("\t\tvec2 dxy1 = %s.xy - %s.zw;\n", fragmentPos, rectName);
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000546 switch (erre.getRRect().getType()) {
547 case SkRRect::kSimple_Type: {
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000548 const char *invRadiiXYSqdName;
joshualitt30ba4362014-08-21 20:18:45 -0700549 fInvRadiiSqdUniform = builder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000550 kVec2f_GrSLType,
551 "invRadiiXY",
552 &invRadiiXYSqdName);
joshualitt30ba4362014-08-21 20:18:45 -0700553 fsBuilder->codeAppend("\t\tvec2 dxy = max(max(dxy0, dxy1), 0.0);\n");
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000554 // Z is the x/y offsets divided by squared radii.
joshualitt30ba4362014-08-21 20:18:45 -0700555 fsBuilder->codeAppendf("\t\tvec2 Z = dxy * %s;\n", invRadiiXYSqdName);
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000556 break;
557 }
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000558 case SkRRect::kNinePatch_Type: {
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000559 const char *invRadiiLTRBSqdName;
joshualitt30ba4362014-08-21 20:18:45 -0700560 fInvRadiiSqdUniform = builder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000561 kVec4f_GrSLType,
562 "invRadiiLTRB",
563 &invRadiiLTRBSqdName);
joshualitt30ba4362014-08-21 20:18:45 -0700564 fsBuilder->codeAppend("\t\tvec2 dxy = max(max(dxy0, dxy1), 0.0);\n");
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000565 // Z is the x/y offsets divided by squared radii. We only care about the (at most) one
566 // corner where both the x and y offsets are positive, hence the maxes. (The inverse
567 // squared radii will always be positive.)
joshualitt30ba4362014-08-21 20:18:45 -0700568 fsBuilder->codeAppendf("\t\tvec2 Z = max(max(dxy0 * %s.xy, dxy1 * %s.zw), 0.0);\n",
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000569 invRadiiLTRBSqdName, invRadiiLTRBSqdName);
570 break;
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000571 }
572 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000573 SkFAIL("RRect should always be simple or nine-patch.");
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000574 }
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000575 // implicit is the evaluation of (x/a)^2 + (y/b)^2 - 1.
joshualitt30ba4362014-08-21 20:18:45 -0700576 fsBuilder->codeAppend("\t\tfloat implicit = dot(Z, dxy) - 1.0;\n");
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000577 // grad_dot is the squared length of the gradient of the implicit.
joshualitt30ba4362014-08-21 20:18:45 -0700578 fsBuilder->codeAppendf("\t\tfloat grad_dot = 4.0 * dot(Z, Z);\n");
commit-bot@chromium.org1b035d82014-04-09 17:11:09 +0000579 // avoid calling inversesqrt on zero.
joshualitt30ba4362014-08-21 20:18:45 -0700580 fsBuilder->codeAppend("\t\tgrad_dot = max(grad_dot, 1.0e-4);\n");
581 fsBuilder->codeAppendf("\t\tfloat approx_dist = implicit * inversesqrt(grad_dot);\n");
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000582
joshualittb0a8a372014-09-23 09:50:21 -0700583 if (kFillAA_GrProcessorEdgeType == erre.getEdgeType()) {
joshualitt30ba4362014-08-21 20:18:45 -0700584 fsBuilder->codeAppend("\t\tfloat alpha = clamp(0.5 - approx_dist, 0.0, 1.0);\n");
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000585 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700586 fsBuilder->codeAppend("\t\tfloat alpha = clamp(0.5 + approx_dist, 0.0, 1.0);\n");
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000587 }
588
joshualitt30ba4362014-08-21 20:18:45 -0700589 fsBuilder->codeAppendf("\t\t%s = %s;\n", outputColor,
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000590 (GrGLSLExpr4(inputColor) * GrGLSLExpr1("alpha")).c_str());
591}
592
joshualittb0a8a372014-09-23 09:50:21 -0700593void GLEllipticalRRectEffect::GenKey(const GrProcessor& effect, const GrGLCaps&,
594 GrProcessorKeyBuilder* b) {
joshualitt49586be2014-09-16 08:21:41 -0700595 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
joshualittb0a8a372014-09-23 09:50:21 -0700596 GR_STATIC_ASSERT(kLast_GrProcessorEdgeType < (1 << 3));
bsalomon63e99f72014-07-21 08:03:14 -0700597 b->add32(erre.getRRect().getType() | erre.getEdgeType() << 3);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000598}
599
kkinnunen7510b222014-07-30 00:04:16 -0700600void GLEllipticalRRectEffect::setData(const GrGLProgramDataManager& pdman,
joshualittb0a8a372014-09-23 09:50:21 -0700601 const GrProcessor& effect) {
joshualitt49586be2014-09-16 08:21:41 -0700602 const EllipticalRRectEffect& erre = effect.cast<EllipticalRRectEffect>();
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000603 const SkRRect& rrect = erre.getRRect();
604 if (rrect != fPrevRRect) {
605 SkRect rect = rrect.getBounds();
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000606 const SkVector& r0 = rrect.radii(SkRRect::kUpperLeft_Corner);
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000607 SkASSERT(r0.fX >= kRadiusMin);
608 SkASSERT(r0.fY >= kRadiusMin);
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000609 switch (erre.getRRect().getType()) {
610 case SkRRect::kSimple_Type:
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000611 rect.inset(r0.fX, r0.fY);
kkinnunen7510b222014-07-30 00:04:16 -0700612 pdman.set2f(fInvRadiiSqdUniform, 1.f / (r0.fX * r0.fX),
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000613 1.f / (r0.fY * r0.fY));
614 break;
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000615 case SkRRect::kNinePatch_Type: {
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000616 const SkVector& r1 = rrect.radii(SkRRect::kLowerRight_Corner);
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000617 SkASSERT(r1.fX >= kRadiusMin);
618 SkASSERT(r1.fY >= kRadiusMin);
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000619 rect.fLeft += r0.fX;
620 rect.fTop += r0.fY;
621 rect.fRight -= r1.fX;
622 rect.fBottom -= r1.fY;
kkinnunen7510b222014-07-30 00:04:16 -0700623 pdman.set4f(fInvRadiiSqdUniform, 1.f / (r0.fX * r0.fX),
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000624 1.f / (r0.fY * r0.fY),
625 1.f / (r1.fX * r1.fX),
626 1.f / (r1.fY * r1.fY));
627 break;
628 }
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000629 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000630 SkFAIL("RRect should always be simple or nine-patch.");
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000631 }
kkinnunen7510b222014-07-30 00:04:16 -0700632 pdman.set4f(fInnerRectUniform, rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000633 fPrevRRect = rrect;
634 }
635}
636
637//////////////////////////////////////////////////////////////////////////////
638
joshualittb0a8a372014-09-23 09:50:21 -0700639GrFragmentProcessor* GrRRectEffect::Create(GrPrimitiveEdgeType edgeType, const SkRRect& rrect) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000640 if (rrect.isRect()) {
641 return GrConvexPolyEffect::Create(edgeType, rrect.getBounds());
642 }
643
commit-bot@chromium.org3eedb802014-03-28 15:58:31 +0000644 if (rrect.isOval()) {
645 return GrOvalEffect::Create(edgeType, rrect.getBounds());
646 }
647
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000648 if (rrect.isSimple()) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000649 if (rrect.getSimpleRadii().fX < kRadiusMin || rrect.getSimpleRadii().fY < kRadiusMin) {
650 // In this case the corners are extremely close to rectangular and we collapse the
651 // clip to a rectangular clip.
652 return GrConvexPolyEffect::Create(edgeType, rrect.getBounds());
653 }
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000654 if (rrect.getSimpleRadii().fX == rrect.getSimpleRadii().fY) {
skia.committer@gmail.com6e4eb212014-03-25 03:02:32 +0000655 return CircularRRectEffect::Create(edgeType, CircularRRectEffect::kAll_CornerFlags,
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000656 rrect);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000657 } else {
commit-bot@chromium.org9615d5f2014-03-20 21:39:03 +0000658 return EllipticalRRectEffect::Create(edgeType, rrect);
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000659 }
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000660 }
661
662 if (rrect.isComplex() || rrect.isNinePatch()) {
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000663 // Check for the "tab" cases - two adjacent circular corners and two square corners.
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000664 SkScalar circularRadius = 0;
665 uint32_t cornerFlags = 0;
666
667 SkVector radii[4];
668 bool squashedRadii = false;
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000669 for (int c = 0; c < 4; ++c) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000670 radii[c] = rrect.radii((SkRRect::Corner)c);
671 SkASSERT((0 == radii[c].fX) == (0 == radii[c].fY));
672 if (0 == radii[c].fX) {
673 // The corner is square, so no need to squash or flag as circular.
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000674 continue;
675 }
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000676 if (radii[c].fX < kRadiusMin || radii[c].fY < kRadiusMin) {
677 radii[c].set(0, 0);
678 squashedRadii = true;
679 continue;
680 }
681 if (radii[c].fX != radii[c].fY) {
bsalomon@google.com44a435b2014-03-13 19:20:32 +0000682 cornerFlags = ~0U;
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000683 break;
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000684 }
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000685 if (!cornerFlags) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000686 circularRadius = radii[c].fX;
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000687 cornerFlags = 1 << c;
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000688 } else {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000689 if (radii[c].fX != circularRadius) {
bsalomon@google.com44a435b2014-03-13 19:20:32 +0000690 cornerFlags = ~0U;
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000691 break;
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000692 }
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000693 cornerFlags |= 1 << c;
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000694 }
695 }
696
commit-bot@chromium.orgdd584222014-03-10 16:08:22 +0000697 switch (cornerFlags) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000698 case CircularRRectEffect::kAll_CornerFlags:
699 // This rrect should have been caught in the simple case above. Though, it would
700 // be correctly handled in the fallthrough code.
701 SkASSERT(false);
commit-bot@chromium.org4355f212014-03-12 15:32:50 +0000702 case CircularRRectEffect::kTopLeft_CornerFlag:
703 case CircularRRectEffect::kTopRight_CornerFlag:
704 case CircularRRectEffect::kBottomRight_CornerFlag:
705 case CircularRRectEffect::kBottomLeft_CornerFlag:
706 case CircularRRectEffect::kLeft_CornerFlags:
707 case CircularRRectEffect::kTop_CornerFlags:
708 case CircularRRectEffect::kRight_CornerFlags:
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000709 case CircularRRectEffect::kBottom_CornerFlags: {
710 SkTCopyOnFirstWrite<SkRRect> rr(rrect);
711 if (squashedRadii) {
712 rr.writable()->setRectRadii(rrect.getBounds(), radii);
713 }
714 return CircularRRectEffect::Create(edgeType, cornerFlags, *rr);
715 }
716 case CircularRRectEffect::kNone_CornerFlags:
717 return GrConvexPolyEffect::Create(edgeType, rrect.getBounds());
718 default: {
719 if (squashedRadii) {
720 // If we got here then we squashed some but not all the radii to zero. (If all
721 // had been squashed cornerFlags would be 0.) The elliptical effect doesn't
722 // support some rounded and some square corners.
723 return NULL;
724 }
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000725 if (rrect.isNinePatch()) {
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000726 return EllipticalRRectEffect::Create(edgeType, rrect);
commit-bot@chromium.orgfa5edbe2014-03-13 18:01:05 +0000727 }
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000728 return NULL;
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000729 }
commit-bot@chromium.orgcb3672e2014-02-21 22:41:56 +0000730 }
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000731 }
commit-bot@chromium.org2a8be902014-03-24 19:24:59 +0000732
733 return NULL;
commit-bot@chromium.orgc2f78242014-02-19 15:18:05 +0000734}