blob: 70c6f11638a40ab67eec0d6bdf24022aca795abb [file] [log] [blame]
commit-bot@chromium.org81312832013-03-22 18:34:09 +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 "GrOvalRenderer.h"
9
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000010#include "GrEffect.h"
11#include "gl/GrGLEffect.h"
12#include "gl/GrGLSL.h"
13#include "GrTBackendEffectFactory.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000014
15#include "GrDrawState.h"
16#include "GrDrawTarget.h"
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000017#include "GrGpu.h"
18
19#include "SkRRect.h"
commit-bot@chromium.org81312832013-03-22 18:34:09 +000020#include "SkStrokeRec.h"
21
22SK_DEFINE_INST_COUNT(GrOvalRenderer)
23
24namespace {
25
26struct CircleVertex {
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +000027 GrPoint fPos;
28 GrPoint fOffset;
commit-bot@chromium.org81312832013-03-22 18:34:09 +000029 SkScalar fOuterRadius;
30 SkScalar fInnerRadius;
31};
32
33struct EllipseVertex {
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +000034 GrPoint fPos;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +000035 GrPoint fOffset;
36 GrPoint fOuterRadii;
37 GrPoint fInnerRadii;
38};
39
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +000040struct DIEllipseVertex {
41 GrPoint fPos;
42 GrPoint fOuterOffset;
43 GrPoint fInnerOffset;
44};
45
commit-bot@chromium.org81312832013-03-22 18:34:09 +000046inline bool circle_stays_circle(const SkMatrix& m) {
47 return m.isSimilarity();
48}
49
50}
51
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000052///////////////////////////////////////////////////////////////////////////////
53
54/**
55 * The output of this effect is a modulation of the input color and coverage for a circle,
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +000056 * specified as offset_x, offset_y (both from center point), outer radius and inner radius.
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000057 */
58
59class CircleEdgeEffect : public GrEffect {
60public:
61 static GrEffectRef* Create(bool stroke) {
bsalomon@google.comd42aca32013-04-23 15:37:27 +000062 GR_CREATE_STATIC_EFFECT(gCircleStrokeEdge, CircleEdgeEffect, (true));
63 GR_CREATE_STATIC_EFFECT(gCircleFillEdge, CircleEdgeEffect, (false));
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000064
65 if (stroke) {
bsalomon@google.comd42aca32013-04-23 15:37:27 +000066 gCircleStrokeEdge->ref();
67 return gCircleStrokeEdge;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000068 } else {
bsalomon@google.comd42aca32013-04-23 15:37:27 +000069 gCircleFillEdge->ref();
70 return gCircleFillEdge;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000071 }
72 }
73
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +000074 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +000075 uint32_t* validFlags) const SK_OVERRIDE {
76 *validFlags = 0;
77 }
78
79 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
80 return GrTBackendEffectFactory<CircleEdgeEffect>::getInstance();
81 }
82
83 virtual ~CircleEdgeEffect() {}
84
85 static const char* Name() { return "CircleEdge"; }
86
87 inline bool isStroked() const { return fStroke; }
88
89 class GLEffect : public GrGLEffect {
90 public:
91 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
92 : INHERITED (factory) {}
93
94 virtual void emitCode(GrGLShaderBuilder* builder,
95 const GrDrawEffect& drawEffect,
96 EffectKey key,
97 const char* outputColor,
98 const char* inputColor,
99 const TextureSamplerArray& samplers) SK_OVERRIDE {
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000100 GrGLShaderBuilder::VertexBuilder* vertexBuilder = builder->getVertexBuilder();
101 SkASSERT(NULL != vertexBuilder);
102
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000103 const CircleEdgeEffect& circleEffect = drawEffect.castEffect<CircleEdgeEffect>();
104 const char *vsName, *fsName;
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000105 vertexBuilder->addVarying(kVec4f_GrSLType, "CircleEdge", &vsName, &fsName);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000106
107 const SkString* attrName =
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000108 vertexBuilder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
109 vertexBuilder->vsCodeAppendf("\t%s = %s;\n", vsName, attrName->c_str());
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000110
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000111 builder->fsCodeAppendf("\tfloat d = length(%s.xy);\n", fsName);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000112 builder->fsCodeAppendf("\tfloat edgeAlpha = clamp(%s.z - d, 0.0, 1.0);\n", fsName);
113 if (circleEffect.isStroked()) {
114 builder->fsCodeAppendf("\tfloat innerAlpha = clamp(d - %s.w, 0.0, 1.0);\n", fsName);
115 builder->fsCodeAppend("\tedgeAlpha *= innerAlpha;\n");
116 }
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000117
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000118 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000119 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000120 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
121 }
122
123 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
124 const CircleEdgeEffect& circleEffect = drawEffect.castEffect<CircleEdgeEffect>();
125
126 return circleEffect.isStroked() ? 0x1 : 0x0;
127 }
128
129 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {}
130
131 private:
132 typedef GrGLEffect INHERITED;
133 };
134
135
136private:
137 CircleEdgeEffect(bool stroke) : GrEffect() {
138 this->addVertexAttrib(kVec4f_GrSLType);
139 fStroke = stroke;
140 }
141
142 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
143 const CircleEdgeEffect& cee = CastEffect<CircleEdgeEffect>(other);
144 return cee.fStroke == fStroke;
145 }
146
147 bool fStroke;
148
149 GR_DECLARE_EFFECT_TEST;
150
151 typedef GrEffect INHERITED;
152};
153
154GR_DEFINE_EFFECT_TEST(CircleEdgeEffect);
155
156GrEffectRef* CircleEdgeEffect::TestCreate(SkMWCRandom* random,
157 GrContext* context,
158 const GrDrawTargetCaps&,
159 GrTexture* textures[]) {
160 return CircleEdgeEffect::Create(random->nextBool());
161}
162
163///////////////////////////////////////////////////////////////////////////////
164
165/**
166 * The output of this effect is a modulation of the input color and coverage for an axis-aligned
skia.committer@gmail.com8be02fc2013-05-17 07:01:11 +0000167 * ellipse, specified as a 2D offset from center, and the reciprocals of the outer and inner radii,
168 * in both x and y directions.
169 *
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000170 * We are using an implicit function of x^2/a^2 + y^2/b^2 - 1 = 0.
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000171 */
172
173class EllipseEdgeEffect : public GrEffect {
174public:
175 static GrEffectRef* Create(bool stroke) {
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000176 GR_CREATE_STATIC_EFFECT(gEllipseStrokeEdge, EllipseEdgeEffect, (true));
177 GR_CREATE_STATIC_EFFECT(gEllipseFillEdge, EllipseEdgeEffect, (false));
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000178
179 if (stroke) {
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000180 gEllipseStrokeEdge->ref();
181 return gEllipseStrokeEdge;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000182 } else {
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000183 gEllipseFillEdge->ref();
184 return gEllipseFillEdge;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000185 }
186 }
187
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000188 virtual void getConstantColorComponents(GrColor* color,
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000189 uint32_t* validFlags) const SK_OVERRIDE {
190 *validFlags = 0;
191 }
192
193 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
194 return GrTBackendEffectFactory<EllipseEdgeEffect>::getInstance();
195 }
196
197 virtual ~EllipseEdgeEffect() {}
198
199 static const char* Name() { return "EllipseEdge"; }
200
201 inline bool isStroked() const { return fStroke; }
202
203 class GLEffect : public GrGLEffect {
204 public:
205 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
206 : INHERITED (factory) {}
207
208 virtual void emitCode(GrGLShaderBuilder* builder,
209 const GrDrawEffect& drawEffect,
210 EffectKey key,
211 const char* outputColor,
212 const char* inputColor,
213 const TextureSamplerArray& samplers) SK_OVERRIDE {
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000214 GrGLShaderBuilder::VertexBuilder* vertexBuilder = builder->getVertexBuilder();
215 SkASSERT(NULL != vertexBuilder);
216
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000217 const EllipseEdgeEffect& ellipseEffect = drawEffect.castEffect<EllipseEdgeEffect>();
218
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000219 const char *vsOffsetName, *fsOffsetName;
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000220 const char *vsRadiiName, *fsRadiiName;
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000221
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000222 vertexBuilder->addVarying(kVec2f_GrSLType, "EllipseOffsets", &vsOffsetName, &fsOffsetName);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000223 const SkString* attr0Name =
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000224 vertexBuilder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
225 vertexBuilder->vsCodeAppendf("\t%s = %s;\n", vsOffsetName, attr0Name->c_str());
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000226
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000227 vertexBuilder->addVarying(kVec4f_GrSLType, "EllipseRadii", &vsRadiiName, &fsRadiiName);
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000228 const SkString* attr1Name =
commit-bot@chromium.org5a02cb42013-08-30 20:17:31 +0000229 vertexBuilder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[1]);
230 vertexBuilder->vsCodeAppendf("\t%s = %s;\n", vsRadiiName, attr1Name->c_str());
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000231
skia.committer@gmail.com8be02fc2013-05-17 07:01:11 +0000232 // for outer curve
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000233 builder->fsCodeAppendf("\tvec2 scaledOffset = %s*%s.xy;\n", fsOffsetName, fsRadiiName);
234 builder->fsCodeAppend("\tfloat test = dot(scaledOffset, scaledOffset) - 1.0;\n");
235 builder->fsCodeAppendf("\tvec2 grad = 2.0*scaledOffset*%s.xy;\n", fsRadiiName);
jvanverth@google.comd1b5b142013-07-02 14:46:03 +0000236 builder->fsCodeAppend("\tfloat grad_dot = dot(grad, grad);\n");
237 // we need to clamp the length^2 of the gradiant vector to a non-zero value, because
238 // on the Nexus 4 the undefined result of inversesqrt(0) drops out an entire tile
239 // TODO: restrict this to Adreno-only
240 builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n");
241 builder->fsCodeAppend("\tfloat invlen = inversesqrt(grad_dot);\n");
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000242 builder->fsCodeAppend("\tfloat edgeAlpha = clamp(0.5-test*invlen, 0.0, 1.0);\n");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000243
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000244 // for inner curve
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000245 if (ellipseEffect.isStroked()) {
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000246 builder->fsCodeAppendf("\tscaledOffset = %s*%s.zw;\n", fsOffsetName, fsRadiiName);
247 builder->fsCodeAppend("\ttest = dot(scaledOffset, scaledOffset) - 1.0;\n");
248 builder->fsCodeAppendf("\tgrad = 2.0*scaledOffset*%s.zw;\n", fsRadiiName);
249 builder->fsCodeAppend("\tinvlen = inversesqrt(dot(grad, grad));\n");
250 builder->fsCodeAppend("\tedgeAlpha *= clamp(0.5+test*invlen, 0.0, 1.0);\n");
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000251 }
252
253 SkString modulate;
bsalomon@google.com018f1792013-04-18 19:36:09 +0000254 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
skia.committer@gmail.com041e2db2013-04-03 07:01:14 +0000255 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
commit-bot@chromium.org90c240a2013-04-02 17:57:21 +0000256 }
257
258 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
259 const EllipseEdgeEffect& ellipseEffect = drawEffect.castEffect<EllipseEdgeEffect>();
260
261 return ellipseEffect.isStroked() ? 0x1 : 0x0;
262 }
263
264 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {
265 }
266
267 private:
268 typedef GrGLEffect INHERITED;
269 };
270
271private:
272 EllipseEdgeEffect(bool stroke) : GrEffect() {
273 this->addVertexAttrib(kVec2f_GrSLType);
274 this->addVertexAttrib(kVec4f_GrSLType);
275 fStroke = stroke;
276 }
277
278 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
279 const EllipseEdgeEffect& eee = CastEffect<EllipseEdgeEffect>(other);
280 return eee.fStroke == fStroke;
281 }
282
283 bool fStroke;
284
285 GR_DECLARE_EFFECT_TEST;
286
287 typedef GrEffect INHERITED;
288};
289
290GR_DEFINE_EFFECT_TEST(EllipseEdgeEffect);
291
292GrEffectRef* EllipseEdgeEffect::TestCreate(SkMWCRandom* random,
293 GrContext* context,
294 const GrDrawTargetCaps&,
295 GrTexture* textures[]) {
296 return EllipseEdgeEffect::Create(random->nextBool());
297}
298
299///////////////////////////////////////////////////////////////////////////////
300
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000301/**
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000302 * The output of this effect is a modulation of the input color and coverage for an ellipse,
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000303 * specified as a 2D offset from center for both the outer and inner paths (if stroked). The
304 * implict equation used is for a unit circle (x^2 + y^2 - 1 = 0) and the edge corrected by
305 * using differentials.
306 *
307 * The result is device-independent and can be used with any affine matrix.
308 */
309
310class DIEllipseEdgeEffect : public GrEffect {
311public:
312 enum Mode { kStroke = 0, kHairline, kFill };
313
314 static GrEffectRef* Create(Mode mode) {
315 GR_CREATE_STATIC_EFFECT(gEllipseStrokeEdge, DIEllipseEdgeEffect, (kStroke));
316 GR_CREATE_STATIC_EFFECT(gEllipseHairlineEdge, DIEllipseEdgeEffect, (kHairline));
317 GR_CREATE_STATIC_EFFECT(gEllipseFillEdge, DIEllipseEdgeEffect, (kFill));
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000318
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000319 if (kStroke == mode) {
320 gEllipseStrokeEdge->ref();
321 return gEllipseStrokeEdge;
322 } else if (kHairline == mode) {
323 gEllipseHairlineEdge->ref();
324 return gEllipseHairlineEdge;
325 } else {
326 gEllipseFillEdge->ref();
327 return gEllipseFillEdge;
328 }
329 }
330
331 virtual void getConstantColorComponents(GrColor* color,
332 uint32_t* validFlags) const SK_OVERRIDE {
333 *validFlags = 0;
334 }
335
336 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
337 return GrTBackendEffectFactory<DIEllipseEdgeEffect>::getInstance();
338 }
339
340 virtual ~DIEllipseEdgeEffect() {}
341
342 static const char* Name() { return "DIEllipseEdge"; }
343
344 inline Mode getMode() const { return fMode; }
345
346 class GLEffect : public GrGLEffect {
347 public:
348 GLEffect(const GrBackendEffectFactory& factory, const GrDrawEffect&)
349 : INHERITED (factory) {}
350
351 virtual void emitCode(GrGLShaderBuilder* builder,
352 const GrDrawEffect& drawEffect,
353 EffectKey key,
354 const char* outputColor,
355 const char* inputColor,
356 const TextureSamplerArray& samplers) SK_OVERRIDE {
357 GrGLShaderBuilder::VertexBuilder* vertexBuilder = builder->getVertexBuilder();
358 SkASSERT(NULL != vertexBuilder);
359
360 const DIEllipseEdgeEffect& ellipseEffect = drawEffect.castEffect<DIEllipseEdgeEffect>();
361
362 SkAssertResult(builder->enableFeature(
363 GrGLShaderBuilder::kStandardDerivatives_GLSLFeature));
364
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000365 const char *vsOffsetName0, *fsOffsetName0;
366 vertexBuilder->addVarying(kVec2f_GrSLType, "EllipseOffsets0",
367 &vsOffsetName0, &fsOffsetName0);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000368 const SkString* attr0Name =
369 vertexBuilder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[0]);
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000370 vertexBuilder->vsCodeAppendf("\t%s = %s;\n", vsOffsetName0, attr0Name->c_str());
371 const char *vsOffsetName1, *fsOffsetName1;
372 vertexBuilder->addVarying(kVec2f_GrSLType, "EllipseOffsets1",
373 &vsOffsetName1, &fsOffsetName1);
374 const SkString* attr1Name =
375 vertexBuilder->getEffectAttributeName(drawEffect.getVertexAttribIndices()[1]);
376 vertexBuilder->vsCodeAppendf("\t%s = %s;\n", vsOffsetName1, attr1Name->c_str());
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000377
378 // for outer curve
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000379 builder->fsCodeAppendf("\tvec2 scaledOffset = %s.xy;\n", fsOffsetName0);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000380 builder->fsCodeAppend("\tfloat test = dot(scaledOffset, scaledOffset) - 1.0;\n");
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000381 builder->fsCodeAppendf("\tvec2 duvdx = dFdx(%s);\n", fsOffsetName0);
382 builder->fsCodeAppendf("\tvec2 duvdy = dFdy(%s);\n", fsOffsetName0);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000383 builder->fsCodeAppendf("\tvec2 grad = vec2(2.0*%s.x*duvdx.x + 2.0*%s.y*duvdx.y,\n"
384 "\t 2.0*%s.x*duvdy.x + 2.0*%s.y*duvdy.y);\n",
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000385 fsOffsetName0, fsOffsetName0, fsOffsetName0, fsOffsetName0);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000386
387 builder->fsCodeAppend("\tfloat grad_dot = dot(grad, grad);\n");
388 // we need to clamp the length^2 of the gradiant vector to a non-zero value, because
389 // on the Nexus 4 the undefined result of inversesqrt(0) drops out an entire tile
390 // TODO: restrict this to Adreno-only
391 builder->fsCodeAppend("\tgrad_dot = max(grad_dot, 1.0e-4);\n");
392 builder->fsCodeAppend("\tfloat invlen = inversesqrt(grad_dot);\n");
393 if (kHairline == ellipseEffect.getMode()) {
394 // can probably do this with one step
395 builder->fsCodeAppend("\tfloat edgeAlpha = clamp(1.0-test*invlen, 0.0, 1.0);\n");
396 builder->fsCodeAppend("\tedgeAlpha *= clamp(1.0+test*invlen, 0.0, 1.0);\n");
397 } else {
398 builder->fsCodeAppend("\tfloat edgeAlpha = clamp(0.5-test*invlen, 0.0, 1.0);\n");
399 }
400
401 // for inner curve
402 if (kStroke == ellipseEffect.getMode()) {
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000403 builder->fsCodeAppendf("\tscaledOffset = %s.xy;\n", fsOffsetName1);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000404 builder->fsCodeAppend("\ttest = dot(scaledOffset, scaledOffset) - 1.0;\n");
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000405 builder->fsCodeAppendf("\tduvdx = dFdx(%s);\n", fsOffsetName1);
406 builder->fsCodeAppendf("\tduvdy = dFdy(%s);\n", fsOffsetName1);
407 builder->fsCodeAppendf("\tgrad = vec2(2.0*%s.x*duvdx.x + 2.0*%s.y*duvdx.y,\n"
408 "\t 2.0*%s.x*duvdy.x + 2.0*%s.y*duvdy.y);\n",
409 fsOffsetName1, fsOffsetName1, fsOffsetName1, fsOffsetName1);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000410 builder->fsCodeAppend("\tinvlen = inversesqrt(dot(grad, grad));\n");
411 builder->fsCodeAppend("\tedgeAlpha *= clamp(0.5+test*invlen, 0.0, 1.0);\n");
412 }
413
414 SkString modulate;
415 GrGLSLModulatef<4>(&modulate, inputColor, "edgeAlpha");
416 builder->fsCodeAppendf("\t%s = %s;\n", outputColor, modulate.c_str());
417 }
418
419 static inline EffectKey GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&) {
420 const DIEllipseEdgeEffect& ellipseEffect = drawEffect.castEffect<DIEllipseEdgeEffect>();
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000421
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000422 return ellipseEffect.getMode();
423 }
424
425 virtual void setData(const GrGLUniformManager&, const GrDrawEffect&) SK_OVERRIDE {
426 }
427
428 private:
429 typedef GrGLEffect INHERITED;
430 };
431
432private:
433 DIEllipseEdgeEffect(Mode mode) : GrEffect() {
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000434 this->addVertexAttrib(kVec2f_GrSLType);
435 this->addVertexAttrib(kVec2f_GrSLType);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000436 fMode = mode;
437 }
438
439 virtual bool onIsEqual(const GrEffect& other) const SK_OVERRIDE {
440 const DIEllipseEdgeEffect& eee = CastEffect<DIEllipseEdgeEffect>(other);
441 return eee.fMode == fMode;
442 }
443
444 Mode fMode;
445
446 GR_DECLARE_EFFECT_TEST;
447
448 typedef GrEffect INHERITED;
449};
450
451GR_DEFINE_EFFECT_TEST(DIEllipseEdgeEffect);
452
453GrEffectRef* DIEllipseEdgeEffect::TestCreate(SkMWCRandom* random,
454 GrContext* context,
455 const GrDrawTargetCaps&,
456 GrTexture* textures[]) {
457 return DIEllipseEdgeEffect::Create((Mode)(random->nextRangeU(0,2)));
458}
459
460///////////////////////////////////////////////////////////////////////////////
461
commit-bot@chromium.orgef284a82013-07-11 22:29:29 +0000462void GrOvalRenderer::reset() {
463 GrSafeSetNull(fRRectIndexBuffer);
464}
465
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000466bool GrOvalRenderer::drawOval(GrDrawTarget* target, const GrContext* context, bool useAA,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000467 const SkRect& oval, const SkStrokeRec& stroke)
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000468{
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000469 if (!useAA) {
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000470 return false;
471 }
472
473 const SkMatrix& vm = context->getMatrix();
474
skia.committer@gmail.com7e328512013-03-23 07:01:28 +0000475 // we can draw circles
476 if (SkScalarNearlyEqual(oval.width(), oval.height())
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000477 && circle_stays_circle(vm)) {
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000478 this->drawCircle(target, useAA, oval, stroke);
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000479 // if we have shader derivative support, render as device-independent
480 } else if (target->caps()->shaderDerivativeSupport()) {
481 return this->drawDIEllipse(target, useAA, oval, stroke);
482 // otherwise axis-aligned ellipses only
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000483 } else if (vm.rectStaysRect()) {
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000484 return this->drawEllipse(target, useAA, oval, stroke);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000485 } else {
486 return false;
487 }
488
489 return true;
490}
491
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000492///////////////////////////////////////////////////////////////////////////////
493
robertphillips@google.com42903302013-04-20 12:26:07 +0000494// position + edge
495extern const GrVertexAttrib gCircleVertexAttribs[] = {
496 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
497 {kVec4f_GrVertexAttribType, sizeof(GrPoint), kEffect_GrVertexAttribBinding}
498};
499
skia.committer@gmail.com7e328512013-03-23 07:01:28 +0000500void GrOvalRenderer::drawCircle(GrDrawTarget* target,
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000501 bool useAA,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000502 const SkRect& circle,
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000503 const SkStrokeRec& stroke)
504{
505 GrDrawState* drawState = target->drawState();
506
507 const SkMatrix& vm = drawState->getViewMatrix();
508 GrPoint center = GrPoint::Make(circle.centerX(), circle.centerY());
509 vm.mapPoints(&center, 1);
510 SkScalar radius = vm.mapRadius(SkScalarHalf(circle.width()));
511 SkScalar strokeWidth = vm.mapRadius(stroke.getWidth());
512
bsalomon@google.com137f1342013-05-29 21:27:53 +0000513 GrDrawState::AutoViewMatrixRestore avmr;
514 if (!avmr.setIdentity(drawState)) {
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000515 return;
516 }
517
robertphillips@google.com42903302013-04-20 12:26:07 +0000518 drawState->setVertexAttribs<gCircleVertexAttribs>(SK_ARRAY_COUNT(gCircleVertexAttribs));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000519 SkASSERT(sizeof(CircleVertex) == drawState->getVertexSize());
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000520
521 GrDrawTarget::AutoReleaseGeometry geo(target, 4, 0);
522 if (!geo.succeeded()) {
523 GrPrintf("Failed to get space for vertices!\n");
524 return;
525 }
526
527 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices());
528
529 SkStrokeRec::Style style = stroke.getStyle();
530 bool isStroked = (SkStrokeRec::kStroke_Style == style || SkStrokeRec::kHairline_Style == style);
skia.committer@gmail.com7e328512013-03-23 07:01:28 +0000531
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000532 SkScalar innerRadius = 0.0f;
533 SkScalar outerRadius = radius;
534 SkScalar halfWidth = 0;
535 if (style != SkStrokeRec::kFill_Style) {
536 if (SkScalarNearlyZero(strokeWidth)) {
537 halfWidth = SK_ScalarHalf;
538 } else {
539 halfWidth = SkScalarHalf(strokeWidth);
540 }
541
542 outerRadius += halfWidth;
543 if (isStroked) {
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000544 innerRadius = radius - halfWidth;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000545 }
546 }
547
commit-bot@chromium.orgcefde6e2013-08-30 16:34:52 +0000548 GrEffectRef* effect = CircleEdgeEffect::Create(isStroked && innerRadius > 0);
549 static const int kCircleEdgeAttrIndex = 1;
550 drawState->addCoverageEffect(effect, kCircleEdgeAttrIndex)->unref();
551
bsalomon@google.com58e30fe2013-04-01 19:01:20 +0000552 // The radii are outset for two reasons. First, it allows the shader to simply perform
553 // clamp(distance-to-center - radius, 0, 1). Second, the outer radius is used to compute the
554 // verts of the bounding box that is rendered and the outset ensures the box will cover all
555 // pixels partially covered by the circle.
556 outerRadius += SK_ScalarHalf;
557 innerRadius -= SK_ScalarHalf;
558
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000559 SkRect bounds = SkRect::MakeLTRB(
bsalomon@google.com58e30fe2013-04-01 19:01:20 +0000560 center.fX - outerRadius,
561 center.fY - outerRadius,
562 center.fX + outerRadius,
563 center.fY + outerRadius
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000564 );
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000565
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000566 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000567 verts[0].fOffset = SkPoint::Make(-outerRadius, -outerRadius);
568 verts[0].fOuterRadius = outerRadius;
569 verts[0].fInnerRadius = innerRadius;
570
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000571 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop);
skia.committer@gmail.com46746762013-04-12 07:01:51 +0000572 verts[1].fOffset = SkPoint::Make(outerRadius, -outerRadius);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000573 verts[1].fOuterRadius = outerRadius;
574 verts[1].fInnerRadius = innerRadius;
575
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000576 verts[2].fPos = SkPoint::Make(bounds.fLeft, bounds.fBottom);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000577 verts[2].fOffset = SkPoint::Make(-outerRadius, outerRadius);
578 verts[2].fOuterRadius = outerRadius;
579 verts[2].fInnerRadius = innerRadius;
580
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000581 verts[3].fPos = SkPoint::Make(bounds.fRight, bounds.fBottom);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000582 verts[3].fOffset = SkPoint::Make(outerRadius, outerRadius);
583 verts[3].fOuterRadius = outerRadius;
584 verts[3].fInnerRadius = innerRadius;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000585
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000586 target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4, &bounds);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000587}
588
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000589///////////////////////////////////////////////////////////////////////////////
590
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000591// position + offset + 1/radii
robertphillips@google.com42903302013-04-20 12:26:07 +0000592extern const GrVertexAttrib gEllipseVertexAttribs[] = {
593 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
594 {kVec2f_GrVertexAttribType, sizeof(GrPoint), kEffect_GrVertexAttribBinding},
595 {kVec4f_GrVertexAttribType, 2*sizeof(GrPoint), kEffect_GrVertexAttribBinding}
596};
597
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000598// position + offsets
599extern const GrVertexAttrib gDIEllipseVertexAttribs[] = {
600 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org96a7a962013-09-06 19:46:48 +0000601 {kVec2f_GrVertexAttribType, sizeof(GrPoint), kEffect_GrVertexAttribBinding},
602 {kVec2f_GrVertexAttribType, 2*sizeof(GrPoint), kEffect_GrVertexAttribBinding},
robertphillips@google.com42903302013-04-20 12:26:07 +0000603};
604
jvanverth@google.comc4f2eca2013-04-16 12:30:35 +0000605bool GrOvalRenderer::drawEllipse(GrDrawTarget* target,
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000606 bool useAA,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000607 const SkRect& ellipse,
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000608 const SkStrokeRec& stroke)
609{
610 GrDrawState* drawState = target->drawState();
611#ifdef SK_DEBUG
612 {
613 // we should have checked for this previously
614 bool isAxisAlignedEllipse = drawState->getViewMatrix().rectStaysRect();
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000615 SkASSERT(useAA && isAxisAlignedEllipse);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000616 }
617#endif
618
commit-bot@chromium.org0c888282013-04-19 19:01:45 +0000619 // do any matrix crunching before we reset the draw state for device coords
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000620 const SkMatrix& vm = drawState->getViewMatrix();
621 GrPoint center = GrPoint::Make(ellipse.centerX(), ellipse.centerY());
622 vm.mapPoints(&center, 1);
commit-bot@chromium.org0c888282013-04-19 19:01:45 +0000623 SkScalar ellipseXRadius = SkScalarHalf(ellipse.width());
624 SkScalar ellipseYRadius = SkScalarHalf(ellipse.height());
skia.committer@gmail.com64b682c2013-04-20 07:01:07 +0000625 SkScalar xRadius = SkScalarAbs(vm[SkMatrix::kMScaleX]*ellipseXRadius +
commit-bot@chromium.org0c888282013-04-19 19:01:45 +0000626 vm[SkMatrix::kMSkewY]*ellipseYRadius);
skia.committer@gmail.com64b682c2013-04-20 07:01:07 +0000627 SkScalar yRadius = SkScalarAbs(vm[SkMatrix::kMSkewX]*ellipseXRadius +
commit-bot@chromium.org0c888282013-04-19 19:01:45 +0000628 vm[SkMatrix::kMScaleY]*ellipseYRadius);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000629
commit-bot@chromium.org0c888282013-04-19 19:01:45 +0000630 // do (potentially) anisotropic mapping of stroke
631 SkVector scaledStroke;
632 SkScalar strokeWidth = stroke.getWidth();
633 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
634 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
635
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000636 SkStrokeRec::Style style = stroke.getStyle();
637 bool isStroked = (SkStrokeRec::kStroke_Style == style || SkStrokeRec::kHairline_Style == style);
638
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000639 SkScalar innerXRadius = 0;
640 SkScalar innerYRadius = 0;
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000641 if (SkStrokeRec::kFill_Style != style) {
642 if (SkScalarNearlyZero(scaledStroke.length())) {
643 scaledStroke.set(SK_ScalarHalf, SK_ScalarHalf);
644 } else {
645 scaledStroke.scale(SK_ScalarHalf);
646 }
647
648 // we only handle thick strokes for near-circular ellipses
649 if (scaledStroke.length() > SK_ScalarHalf &&
650 (SK_ScalarHalf*xRadius > yRadius || SK_ScalarHalf*yRadius > xRadius)) {
651 return false;
652 }
653
654 // we don't handle it if curvature of the stroke is less than curvature of the ellipse
655 if (scaledStroke.fX*(yRadius*yRadius) < (scaledStroke.fY*scaledStroke.fY)*xRadius ||
656 scaledStroke.fY*(xRadius*xRadius) < (scaledStroke.fX*scaledStroke.fX)*yRadius) {
657 return false;
658 }
659
660 // this is legit only if scale & translation (which should be the case at the moment)
661 if (isStroked) {
662 innerXRadius = xRadius - scaledStroke.fX;
663 innerYRadius = yRadius - scaledStroke.fY;
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000664 }
665
666 xRadius += scaledStroke.fX;
667 yRadius += scaledStroke.fY;
668 }
669
bsalomon@google.com137f1342013-05-29 21:27:53 +0000670 GrDrawState::AutoViewMatrixRestore avmr;
671 if (!avmr.setIdentity(drawState)) {
jvanverth@google.comc4f2eca2013-04-16 12:30:35 +0000672 return false;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000673 }
674
robertphillips@google.com42903302013-04-20 12:26:07 +0000675 drawState->setVertexAttribs<gEllipseVertexAttribs>(SK_ARRAY_COUNT(gEllipseVertexAttribs));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000676 SkASSERT(sizeof(EllipseVertex) == drawState->getVertexSize());
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000677
678 GrDrawTarget::AutoReleaseGeometry geo(target, 4, 0);
679 if (!geo.succeeded()) {
680 GrPrintf("Failed to get space for vertices!\n");
jvanverth@google.comc4f2eca2013-04-16 12:30:35 +0000681 return false;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000682 }
683
684 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices());
685
commit-bot@chromium.orgcefde6e2013-08-30 16:34:52 +0000686 GrEffectRef* effect = EllipseEdgeEffect::Create(isStroked &&
687 innerXRadius > 0 && innerYRadius > 0);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000688
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000689 static const int kEllipseCenterAttrIndex = 1;
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000690 drawState->addCoverageEffect(effect, kEllipseCenterAttrIndex)->unref();
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000691
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000692 // Compute the reciprocals of the radii here to save time in the shader
693 SkScalar xRadRecip = SkScalarInvert(xRadius);
694 SkScalar yRadRecip = SkScalarInvert(yRadius);
695 SkScalar xInnerRadRecip = SkScalarInvert(innerXRadius);
696 SkScalar yInnerRadRecip = SkScalarInvert(innerYRadius);
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000697
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000698 // We've extended the outer x radius out half a pixel to antialias.
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000699 // This will also expand the rect so all the pixels will be captured.
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000700 // TODO: Consider if we should use sqrt(2)/2 instead
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000701 xRadius += SK_ScalarHalf;
702 yRadius += SK_ScalarHalf;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000703
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000704 SkRect bounds = SkRect::MakeLTRB(
705 center.fX - xRadius,
706 center.fY - yRadius,
707 center.fX + xRadius,
708 center.fY + yRadius
709 );
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000710
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000711 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000712 verts[0].fOffset = SkPoint::Make(-xRadius, -yRadius);
713 verts[0].fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
714 verts[0].fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000715
716 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000717 verts[1].fOffset = SkPoint::Make(xRadius, -yRadius);
718 verts[1].fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
719 verts[1].fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000720
721 verts[2].fPos = SkPoint::Make(bounds.fLeft, bounds.fBottom);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000722 verts[2].fOffset = SkPoint::Make(-xRadius, yRadius);
723 verts[2].fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
724 verts[2].fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000725
726 verts[3].fPos = SkPoint::Make(bounds.fRight, bounds.fBottom);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000727 verts[3].fOffset = SkPoint::Make(xRadius, yRadius);
728 verts[3].fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
729 verts[3].fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
skia.committer@gmail.com46746762013-04-12 07:01:51 +0000730
commit-bot@chromium.org0a6cb602013-04-11 15:05:37 +0000731 target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4, &bounds);
jvanverth@google.comc4f2eca2013-04-16 12:30:35 +0000732
733 return true;
commit-bot@chromium.org81312832013-03-22 18:34:09 +0000734}
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000735
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000736bool GrOvalRenderer::drawDIEllipse(GrDrawTarget* target,
737 bool useAA,
738 const SkRect& ellipse,
739 const SkStrokeRec& stroke)
740{
741 GrDrawState* drawState = target->drawState();
742 const SkMatrix& vm = drawState->getViewMatrix();
743
744 GrPoint center = GrPoint::Make(ellipse.centerX(), ellipse.centerY());
745 SkScalar xRadius = SkScalarHalf(ellipse.width());
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000746 SkScalar yRadius = SkScalarHalf(ellipse.height());
747
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000748 SkStrokeRec::Style style = stroke.getStyle();
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000749 DIEllipseEdgeEffect::Mode mode = (SkStrokeRec::kStroke_Style == style) ?
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000750 DIEllipseEdgeEffect::kStroke :
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000751 (SkStrokeRec::kHairline_Style == style) ?
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000752 DIEllipseEdgeEffect::kHairline : DIEllipseEdgeEffect::kFill;
753
754 SkScalar innerXRadius = 0;
755 SkScalar innerYRadius = 0;
756 if (SkStrokeRec::kFill_Style != style && SkStrokeRec::kHairline_Style != style) {
757 SkScalar strokeWidth = stroke.getWidth();
758
759 if (SkScalarNearlyZero(strokeWidth)) {
760 strokeWidth = SK_ScalarHalf;
761 } else {
762 strokeWidth *= SK_ScalarHalf;
763 }
764
765 // we only handle thick strokes for near-circular ellipses
766 if (strokeWidth > SK_ScalarHalf &&
767 (SK_ScalarHalf*xRadius > yRadius || SK_ScalarHalf*yRadius > xRadius)) {
768 return false;
769 }
770
771 // we don't handle it if curvature of the stroke is less than curvature of the ellipse
772 if (strokeWidth*(yRadius*yRadius) < (strokeWidth*strokeWidth)*xRadius ||
773 strokeWidth*(xRadius*xRadius) < (strokeWidth*strokeWidth)*yRadius) {
774 return false;
775 }
776
777 // set inner radius (if needed)
778 if (SkStrokeRec::kStroke_Style == style) {
779 innerXRadius = xRadius - strokeWidth;
780 innerYRadius = yRadius - strokeWidth;
781 }
782
783 xRadius += strokeWidth;
784 yRadius += strokeWidth;
785 }
786 if (DIEllipseEdgeEffect::kStroke == mode) {
787 mode = (innerXRadius > 0 && innerYRadius > 0) ? DIEllipseEdgeEffect::kStroke :
788 DIEllipseEdgeEffect::kFill;
789 }
790 SkScalar innerRatioX = SkScalarDiv(xRadius, innerXRadius);
791 SkScalar innerRatioY = SkScalarDiv(yRadius, innerYRadius);
792
793 drawState->setVertexAttribs<gDIEllipseVertexAttribs>(SK_ARRAY_COUNT(gDIEllipseVertexAttribs));
794 SkASSERT(sizeof(DIEllipseVertex) == drawState->getVertexSize());
795
796 GrDrawTarget::AutoReleaseGeometry geo(target, 4, 0);
797 if (!geo.succeeded()) {
798 GrPrintf("Failed to get space for vertices!\n");
799 return false;
800 }
801
802 DIEllipseVertex* verts = reinterpret_cast<DIEllipseVertex*>(geo.vertices());
803
804 GrEffectRef* effect = DIEllipseEdgeEffect::Create(mode);
805
806 static const int kEllipseOuterOffsetAttrIndex = 1;
807 static const int kEllipseInnerOffsetAttrIndex = 2;
808 drawState->addCoverageEffect(effect, kEllipseOuterOffsetAttrIndex,
809 kEllipseInnerOffsetAttrIndex)->unref();
skia.committer@gmail.com6fc1b492013-09-06 07:01:45 +0000810
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000811 // This expands the outer rect so that after CTM we end up with a half-pixel border
812 SkScalar a = vm[SkMatrix::kMScaleX];
813 SkScalar b = vm[SkMatrix::kMSkewX];
814 SkScalar c = vm[SkMatrix::kMSkewY];
815 SkScalar d = vm[SkMatrix::kMScaleY];
816 SkScalar geoDx = SkScalarDiv(SK_ScalarHalf, SkScalarSqrt(a*a + c*c));
817 SkScalar geoDy = SkScalarDiv(SK_ScalarHalf, SkScalarSqrt(b*b + d*d));
818 // This adjusts the "radius" to include the half-pixel border
819 SkScalar offsetDx = SkScalarDiv(geoDx, xRadius);
820 SkScalar offsetDy = SkScalarDiv(geoDy, yRadius);
821
822 SkRect bounds = SkRect::MakeLTRB(
823 center.fX - xRadius - geoDx,
824 center.fY - yRadius - geoDy,
825 center.fX + xRadius + geoDx,
826 center.fY + yRadius + geoDy
827 );
828
829 verts[0].fPos = SkPoint::Make(bounds.fLeft, bounds.fTop);
830 verts[0].fOuterOffset = SkPoint::Make(-1.0f - offsetDx, -1.0f - offsetDy);
831 verts[0].fInnerOffset = SkPoint::Make(-innerRatioX - offsetDx, -innerRatioY - offsetDy);
832
833 verts[1].fPos = SkPoint::Make(bounds.fRight, bounds.fTop);
834 verts[1].fOuterOffset = SkPoint::Make(1.0f + offsetDx, -1.0f - offsetDy);
835 verts[1].fInnerOffset = SkPoint::Make(innerRatioX + offsetDx, -innerRatioY - offsetDy);
836
837 verts[2].fPos = SkPoint::Make(bounds.fLeft, bounds.fBottom);
838 verts[2].fOuterOffset = SkPoint::Make(-1.0f - offsetDx, 1.0f + offsetDy);
839 verts[2].fInnerOffset = SkPoint::Make(-innerRatioX - offsetDx, innerRatioY + offsetDy);
840
841 verts[3].fPos = SkPoint::Make(bounds.fRight, bounds.fBottom);
842 verts[3].fOuterOffset = SkPoint::Make(1.0f + offsetDx, 1.0f + offsetDy);
843 verts[3].fInnerOffset = SkPoint::Make(innerRatioX + offsetDx, innerRatioY + offsetDy);
844
845 target->drawNonIndexed(kTriangleStrip_GrPrimitiveType, 0, 4, &bounds);
846
847 return true;
848}
849
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000850///////////////////////////////////////////////////////////////////////////////
851
852static const uint16_t gRRectIndices[] = {
853 // corners
854 0, 1, 5, 0, 5, 4,
855 2, 3, 7, 2, 7, 6,
856 8, 9, 13, 8, 13, 12,
857 10, 11, 15, 10, 15, 14,
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000858
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000859 // edges
860 1, 2, 6, 1, 6, 5,
861 4, 5, 9, 4, 9, 8,
862 6, 7, 11, 6, 11, 10,
863 9, 10, 14, 9, 14, 13,
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000864
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000865 // center
866 // we place this at the end so that we can ignore these indices when rendering stroke-only
867 5, 6, 10, 5, 10, 9
868};
869
870
871GrIndexBuffer* GrOvalRenderer::rRectIndexBuffer(GrGpu* gpu) {
872 if (NULL == fRRectIndexBuffer) {
873 fRRectIndexBuffer =
874 gpu->createIndexBuffer(sizeof(gRRectIndices), false);
875 if (NULL != fRRectIndexBuffer) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000876#ifdef SK_DEBUG
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000877 bool updated =
878#endif
879 fRRectIndexBuffer->updateData(gRRectIndices,
880 sizeof(gRRectIndices));
881 GR_DEBUGASSERT(updated);
882 }
883 }
884 return fRRectIndexBuffer;
885}
886
skia.committer@gmail.com2fd42c42013-05-03 07:01:00 +0000887bool GrOvalRenderer::drawSimpleRRect(GrDrawTarget* target, GrContext* context, bool useAA,
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000888 const SkRRect& rrect, const SkStrokeRec& stroke)
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000889{
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000890 // only anti-aliased rrects for now
891 if (!useAA) {
892 return false;
893 }
894
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000895 const SkMatrix& vm = context->getMatrix();
896#ifdef SK_DEBUG
897 {
898 // we should have checked for this previously
commit-bot@chromium.org37d883d2013-05-02 13:11:22 +0000899 SkASSERT(useAA && vm.rectStaysRect() && rrect.isSimple());
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000900 }
901#endif
902
903 // do any matrix crunching before we reset the draw state for device coords
904 const SkRect& rrectBounds = rrect.getBounds();
905 SkRect bounds;
906 vm.mapRect(&bounds, rrectBounds);
907
908 SkVector radii = rrect.getSimpleRadii();
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000909 SkScalar xRadius = SkScalarAbs(vm[SkMatrix::kMScaleX]*radii.fX +
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000910 vm[SkMatrix::kMSkewY]*radii.fY);
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000911 SkScalar yRadius = SkScalarAbs(vm[SkMatrix::kMSkewX]*radii.fX +
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000912 vm[SkMatrix::kMScaleY]*radii.fY);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000913
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000914 // if hairline stroke is greater than radius, we don't handle that right now
915 SkStrokeRec::Style style = stroke.getStyle();
916 if (SkStrokeRec::kHairline_Style == style &&
917 (SK_ScalarHalf >= xRadius || SK_ScalarHalf >= yRadius)) {
918 return false;
919 }
920
921 // do (potentially) anisotropic mapping of stroke
922 SkVector scaledStroke;
923 SkScalar strokeWidth = stroke.getWidth();
924 scaledStroke.fX = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMScaleX] + vm[SkMatrix::kMSkewY]));
925 scaledStroke.fY = SkScalarAbs(strokeWidth*(vm[SkMatrix::kMSkewX] + vm[SkMatrix::kMScaleY]));
926
927 // if half of strokewidth is greater than radius, we don't handle that right now
928 if (SK_ScalarHalf*scaledStroke.fX >= xRadius || SK_ScalarHalf*scaledStroke.fY >= yRadius) {
929 return false;
930 }
931
932 // reset to device coordinates
933 GrDrawState* drawState = target->drawState();
bsalomon@google.com137f1342013-05-29 21:27:53 +0000934 GrDrawState::AutoViewMatrixRestore avmr;
935 if (!avmr.setIdentity(drawState)) {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000936 return false;
937 }
938
939 bool isStroked = (SkStrokeRec::kStroke_Style == style || SkStrokeRec::kHairline_Style == style);
940
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000941 GrIndexBuffer* indexBuffer = this->rRectIndexBuffer(context->getGpu());
942 if (NULL == indexBuffer) {
943 GrPrintf("Failed to create index buffer!\n");
944 return false;
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000945 }
946
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000947 // if the corners are circles, use the circle renderer
948 if ((!isStroked || scaledStroke.fX == scaledStroke.fY) && xRadius == yRadius) {
949 drawState->setVertexAttribs<gCircleVertexAttribs>(SK_ARRAY_COUNT(gCircleVertexAttribs));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000950 SkASSERT(sizeof(CircleVertex) == drawState->getVertexSize());
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000951
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000952 GrDrawTarget::AutoReleaseGeometry geo(target, 16, 0);
953 if (!geo.succeeded()) {
954 GrPrintf("Failed to get space for vertices!\n");
955 return false;
956 }
957 CircleVertex* verts = reinterpret_cast<CircleVertex*>(geo.vertices());
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000958
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000959 SkScalar innerRadius = 0.0f;
960 SkScalar outerRadius = xRadius;
961 SkScalar halfWidth = 0;
962 if (style != SkStrokeRec::kFill_Style) {
963 if (SkScalarNearlyZero(scaledStroke.fX)) {
964 halfWidth = SK_ScalarHalf;
965 } else {
966 halfWidth = SkScalarHalf(scaledStroke.fX);
967 }
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000968
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000969 if (isStroked) {
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000970 innerRadius = xRadius - halfWidth;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000971 }
972 outerRadius += halfWidth;
973 bounds.outset(halfWidth, halfWidth);
974 }
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000975
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +0000976 isStroked = (isStroked && innerRadius > 0);
commit-bot@chromium.orgcefde6e2013-08-30 16:34:52 +0000977
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +0000978 GrEffectRef* effect = CircleEdgeEffect::Create(isStroked);
979 static const int kCircleEdgeAttrIndex = 1;
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000980 drawState->addCoverageEffect(effect, kCircleEdgeAttrIndex)->unref();
skia.committer@gmail.com8be02fc2013-05-17 07:01:11 +0000981
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000982 // The radii are outset for two reasons. First, it allows the shader to simply perform
983 // clamp(distance-to-center - radius, 0, 1). Second, the outer radius is used to compute the
984 // verts of the bounding box that is rendered and the outset ensures the box will cover all
985 // pixels partially covered by the circle.
986 outerRadius += SK_ScalarHalf;
987 innerRadius -= SK_ScalarHalf;
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000988
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000989 // Expand the rect so all the pixels will be captured.
990 bounds.outset(SK_ScalarHalf, SK_ScalarHalf);
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +0000991
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +0000992 SkScalar yCoords[4] = {
993 bounds.fTop,
994 bounds.fTop + outerRadius,
995 bounds.fBottom - outerRadius,
996 bounds.fBottom
997 };
998 SkScalar yOuterRadii[4] = {
999 -outerRadius,
1000 0,
1001 0,
1002 outerRadius
1003 };
1004 for (int i = 0; i < 4; ++i) {
1005 verts->fPos = SkPoint::Make(bounds.fLeft, yCoords[i]);
1006 verts->fOffset = SkPoint::Make(-outerRadius, yOuterRadii[i]);
1007 verts->fOuterRadius = outerRadius;
1008 verts->fInnerRadius = innerRadius;
1009 verts++;
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001010
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001011 verts->fPos = SkPoint::Make(bounds.fLeft + outerRadius, yCoords[i]);
1012 verts->fOffset = SkPoint::Make(0, yOuterRadii[i]);
1013 verts->fOuterRadius = outerRadius;
1014 verts->fInnerRadius = innerRadius;
1015 verts++;
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001016
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001017 verts->fPos = SkPoint::Make(bounds.fRight - outerRadius, yCoords[i]);
1018 verts->fOffset = SkPoint::Make(0, yOuterRadii[i]);
1019 verts->fOuterRadius = outerRadius;
1020 verts->fInnerRadius = innerRadius;
1021 verts++;
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001022
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001023 verts->fPos = SkPoint::Make(bounds.fRight, yCoords[i]);
1024 verts->fOffset = SkPoint::Make(outerRadius, yOuterRadii[i]);
1025 verts->fOuterRadius = outerRadius;
1026 verts->fInnerRadius = innerRadius;
1027 verts++;
1028 }
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001029
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001030 // drop out the middle quad if we're stroked
1031 int indexCnt = isStroked ? GR_ARRAY_COUNT(gRRectIndices)-6 : GR_ARRAY_COUNT(gRRectIndices);
1032 target->setIndexSourceToBuffer(indexBuffer);
1033 target->drawIndexed(kTriangles_GrPrimitiveType, 0, 0, 16, indexCnt, &bounds);
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001034
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001035 // otherwise we use the ellipse renderer
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001036 } else {
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001037 drawState->setVertexAttribs<gEllipseVertexAttribs>(SK_ARRAY_COUNT(gEllipseVertexAttribs));
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +00001038 SkASSERT(sizeof(EllipseVertex) == drawState->getVertexSize());
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001039
1040 SkScalar innerXRadius = 0.0f;
1041 SkScalar innerYRadius = 0.0f;
1042 if (SkStrokeRec::kFill_Style != style) {
1043 if (SkScalarNearlyZero(scaledStroke.length())) {
1044 scaledStroke.set(SK_ScalarHalf, SK_ScalarHalf);
1045 } else {
1046 scaledStroke.scale(SK_ScalarHalf);
1047 }
1048
1049 // we only handle thick strokes for near-circular ellipses
skia.committer@gmail.com8be02fc2013-05-17 07:01:11 +00001050 if (scaledStroke.length() > SK_ScalarHalf &&
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001051 (SK_ScalarHalf*xRadius > yRadius || SK_ScalarHalf*yRadius > xRadius)) {
1052 return false;
1053 }
1054
1055 // we don't handle it if curvature of the stroke is less than curvature of the ellipse
1056 if (scaledStroke.fX*(yRadius*yRadius) < (scaledStroke.fY*scaledStroke.fY)*xRadius ||
1057 scaledStroke.fY*(xRadius*xRadius) < (scaledStroke.fX*scaledStroke.fX)*yRadius) {
1058 return false;
1059 }
1060
1061 // this is legit only if scale & translation (which should be the case at the moment)
1062 if (isStroked) {
1063 innerXRadius = xRadius - scaledStroke.fX;
1064 innerYRadius = yRadius - scaledStroke.fY;
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001065 }
1066
1067 xRadius += scaledStroke.fX;
1068 yRadius += scaledStroke.fY;
1069 bounds.outset(scaledStroke.fX, scaledStroke.fY);
1070 }
jvanverth@google.come3647412013-05-08 15:31:43 +00001071
commit-bot@chromium.org5242ed72013-09-05 19:26:51 +00001072 isStroked = (isStroked && innerXRadius > 0 && innerYRadius > 0);
commit-bot@chromium.orgcefde6e2013-08-30 16:34:52 +00001073
jvanverth@google.come3647412013-05-08 15:31:43 +00001074 GrDrawTarget::AutoReleaseGeometry geo(target, 16, 0);
1075 if (!geo.succeeded()) {
1076 GrPrintf("Failed to get space for vertices!\n");
1077 return false;
1078 }
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001079 EllipseVertex* verts = reinterpret_cast<EllipseVertex*>(geo.vertices());
jvanverth@google.come3647412013-05-08 15:31:43 +00001080
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001081 GrEffectRef* effect = EllipseEdgeEffect::Create(isStroked);
jvanverth@google.come3647412013-05-08 15:31:43 +00001082 static const int kEllipseOffsetAttrIndex = 1;
1083 static const int kEllipseRadiiAttrIndex = 2;
bsalomon@google.comeb6879f2013-06-13 19:34:18 +00001084 drawState->addCoverageEffect(effect,
1085 kEllipseOffsetAttrIndex, kEllipseRadiiAttrIndex)->unref();
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001086
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001087 // Compute the reciprocals of the radii here to save time in the shader
1088 SkScalar xRadRecip = SkScalarInvert(xRadius);
1089 SkScalar yRadRecip = SkScalarInvert(yRadius);
1090 SkScalar xInnerRadRecip = SkScalarInvert(innerXRadius);
1091 SkScalar yInnerRadRecip = SkScalarInvert(innerYRadius);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001092
1093 // Extend the radii out half a pixel to antialias.
1094 SkScalar xOuterRadius = xRadius + SK_ScalarHalf;
1095 SkScalar yOuterRadius = yRadius + SK_ScalarHalf;
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001096
1097 // Expand the rect so all the pixels will be captured.
1098 bounds.outset(SK_ScalarHalf, SK_ScalarHalf);
1099
1100 SkScalar yCoords[4] = {
1101 bounds.fTop,
1102 bounds.fTop + yOuterRadius,
1103 bounds.fBottom - yOuterRadius,
1104 bounds.fBottom
1105 };
1106 SkScalar yOuterOffsets[4] = {
jvanverth@google.comd1b5b142013-07-02 14:46:03 +00001107 yOuterRadius,
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001108 SK_ScalarNearlyZero, // we're using inversesqrt() in the shader, so can't be exactly 0
1109 SK_ScalarNearlyZero,
1110 yOuterRadius
1111 };
1112
1113 for (int i = 0; i < 4; ++i) {
1114 verts->fPos = SkPoint::Make(bounds.fLeft, yCoords[i]);
jvanverth@google.comd1b5b142013-07-02 14:46:03 +00001115 verts->fOffset = SkPoint::Make(xOuterRadius, yOuterOffsets[i]);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001116 verts->fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
1117 verts->fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001118 verts++;
1119
1120 verts->fPos = SkPoint::Make(bounds.fLeft + xOuterRadius, yCoords[i]);
1121 verts->fOffset = SkPoint::Make(SK_ScalarNearlyZero, yOuterOffsets[i]);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001122 verts->fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
1123 verts->fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001124 verts++;
1125
1126 verts->fPos = SkPoint::Make(bounds.fRight - xOuterRadius, yCoords[i]);
1127 verts->fOffset = SkPoint::Make(SK_ScalarNearlyZero, yOuterOffsets[i]);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001128 verts->fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
1129 verts->fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001130 verts++;
1131
1132 verts->fPos = SkPoint::Make(bounds.fRight, yCoords[i]);
1133 verts->fOffset = SkPoint::Make(xOuterRadius, yOuterOffsets[i]);
commit-bot@chromium.org6bb3efc2013-05-16 13:14:46 +00001134 verts->fOuterRadii = SkPoint::Make(xRadRecip, yRadRecip);
1135 verts->fInnerRadii = SkPoint::Make(xInnerRadRecip, yInnerRadRecip);
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001136 verts++;
1137 }
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001138
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001139 // drop out the middle quad if we're stroked
1140 int indexCnt = isStroked ? GR_ARRAY_COUNT(gRRectIndices)-6 : GR_ARRAY_COUNT(gRRectIndices);
1141 target->setIndexSourceToBuffer(indexBuffer);
1142 target->drawIndexed(kTriangles_GrPrimitiveType, 0, 0, 16, indexCnt, &bounds);
1143 }
skia.committer@gmail.com2cf444f2013-04-26 07:00:58 +00001144
commit-bot@chromium.orgf2bfd542013-04-25 15:27:00 +00001145 return true;
1146}