blob: 38aa60cf7fe0810a25d5949ca31501803985aeb3 [file] [log] [blame]
rileya@google.com589708b2012-07-26 20:04:23 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "SkTwoPointConicalGradient.h"
10
11static int valid_divide(float numer, float denom, float* ratio) {
12 SkASSERT(ratio);
13 if (0 == denom) {
14 return 0;
15 }
16 *ratio = numer / denom;
17 return 1;
18}
19
20// Return the number of distinct real roots, and write them into roots[] in
21// ascending order
22static int find_quad_roots(float A, float B, float C, float roots[2]) {
23 SkASSERT(roots);
rmistry@google.comfbfcd562012-08-23 18:09:54 +000024
rileya@google.com589708b2012-07-26 20:04:23 +000025 if (A == 0) {
26 return valid_divide(-C, B, roots);
27 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +000028
rileya@google.com589708b2012-07-26 20:04:23 +000029 float R = B*B - 4*A*C;
30 if (R < 0) {
31 return 0;
32 }
33 R = sk_float_sqrt(R);
34
35#if 1
36 float Q = B;
37 if (Q < 0) {
38 Q -= R;
39 } else {
40 Q += R;
41 }
42#else
43 // on 10.6 this was much slower than the above branch :(
44 float Q = B + copysignf(R, B);
45#endif
46 Q *= -0.5f;
47 if (0 == Q) {
48 roots[0] = 0;
49 return 1;
50 }
51
52 float r0 = Q / A;
53 float r1 = C / Q;
54 roots[0] = r0 < r1 ? r0 : r1;
55 roots[1] = r0 > r1 ? r0 : r1;
56 return 2;
57}
58
59static float lerp(float x, float dx, float t) {
60 return x + t * dx;
61}
62
63static float sqr(float x) { return x * x; }
64
65void TwoPtRadial::init(const SkPoint& center0, SkScalar rad0,
66 const SkPoint& center1, SkScalar rad1) {
67 fCenterX = SkScalarToFloat(center0.fX);
68 fCenterY = SkScalarToFloat(center0.fY);
69 fDCenterX = SkScalarToFloat(center1.fX) - fCenterX;
70 fDCenterY = SkScalarToFloat(center1.fY) - fCenterY;
71 fRadius = SkScalarToFloat(rad0);
72 fDRadius = SkScalarToFloat(rad1) - fRadius;
73
74 fA = sqr(fDCenterX) + sqr(fDCenterY) - sqr(fDRadius);
75 fRadius2 = sqr(fRadius);
76 fRDR = fRadius * fDRadius;
77}
78
79void TwoPtRadial::setup(SkScalar fx, SkScalar fy, SkScalar dfx, SkScalar dfy) {
80 fRelX = SkScalarToFloat(fx) - fCenterX;
81 fRelY = SkScalarToFloat(fy) - fCenterY;
82 fIncX = SkScalarToFloat(dfx);
83 fIncY = SkScalarToFloat(dfy);
84 fB = -2 * (fDCenterX * fRelX + fDCenterY * fRelY + fRDR);
85 fDB = -2 * (fDCenterX * fIncX + fDCenterY * fIncY);
86}
87
88SkFixed TwoPtRadial::nextT() {
89 float roots[2];
rmistry@google.comfbfcd562012-08-23 18:09:54 +000090
rileya@google.com589708b2012-07-26 20:04:23 +000091 float C = sqr(fRelX) + sqr(fRelY) - fRadius2;
92 int countRoots = find_quad_roots(fA, fB, C, roots);
93
94 fRelX += fIncX;
95 fRelY += fIncY;
96 fB += fDB;
97
98 if (0 == countRoots) {
99 return kDontDrawT;
100 }
101
102 // Prefer the bigger t value if both give a radius(t) > 0
103 // find_quad_roots returns the values sorted, so we start with the last
104 float t = roots[countRoots - 1];
105 float r = lerp(fRadius, fDRadius, t);
106 if (r <= 0) {
107 t = roots[0]; // might be the same as roots[countRoots-1]
108 r = lerp(fRadius, fDRadius, t);
109 if (r <= 0) {
110 return kDontDrawT;
111 }
112 }
113 return SkFloatToFixed(t);
114}
115
reed@google.com60040292013-02-04 18:21:23 +0000116typedef void (*TwoPointConicalProc)(TwoPtRadial* rec, SkPMColor* dstC,
117 const SkPMColor* cache, int toggle, int count);
rileya@google.com589708b2012-07-26 20:04:23 +0000118
119static void twopoint_clamp(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
reed@google.com60040292013-02-04 18:21:23 +0000120 const SkPMColor* SK_RESTRICT cache, int toggle,
121 int count) {
rileya@google.com589708b2012-07-26 20:04:23 +0000122 for (; count > 0; --count) {
123 SkFixed t = rec->nextT();
124 if (TwoPtRadial::DontDrawT(t)) {
125 *dstC++ = 0;
126 } else {
127 SkFixed index = SkClampMax(t, 0xFFFF);
128 SkASSERT(index <= 0xFFFF);
reed@google.com60040292013-02-04 18:21:23 +0000129 *dstC++ = cache[toggle +
130 (index >> SkGradientShaderBase::kCache32Shift)];
rileya@google.com589708b2012-07-26 20:04:23 +0000131 }
reed@google.com60040292013-02-04 18:21:23 +0000132 toggle = next_dither_toggle(toggle);
rileya@google.com589708b2012-07-26 20:04:23 +0000133 }
134}
135
136static void twopoint_repeat(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
reed@google.com60040292013-02-04 18:21:23 +0000137 const SkPMColor* SK_RESTRICT cache, int toggle,
138 int count) {
rileya@google.com589708b2012-07-26 20:04:23 +0000139 for (; count > 0; --count) {
140 SkFixed t = rec->nextT();
141 if (TwoPtRadial::DontDrawT(t)) {
142 *dstC++ = 0;
143 } else {
144 SkFixed index = repeat_tileproc(t);
145 SkASSERT(index <= 0xFFFF);
reed@google.com60040292013-02-04 18:21:23 +0000146 *dstC++ = cache[toggle +
147 (index >> SkGradientShaderBase::kCache32Shift)];
rileya@google.com589708b2012-07-26 20:04:23 +0000148 }
reed@google.com60040292013-02-04 18:21:23 +0000149 toggle = next_dither_toggle(toggle);
rileya@google.com589708b2012-07-26 20:04:23 +0000150 }
151}
152
153static void twopoint_mirror(TwoPtRadial* rec, SkPMColor* SK_RESTRICT dstC,
reed@google.com60040292013-02-04 18:21:23 +0000154 const SkPMColor* SK_RESTRICT cache, int toggle,
155 int count) {
rileya@google.com589708b2012-07-26 20:04:23 +0000156 for (; count > 0; --count) {
157 SkFixed t = rec->nextT();
158 if (TwoPtRadial::DontDrawT(t)) {
159 *dstC++ = 0;
160 } else {
161 SkFixed index = mirror_tileproc(t);
162 SkASSERT(index <= 0xFFFF);
reed@google.com60040292013-02-04 18:21:23 +0000163 *dstC++ = cache[toggle +
164 (index >> SkGradientShaderBase::kCache32Shift)];
rileya@google.com589708b2012-07-26 20:04:23 +0000165 }
reed@google.com60040292013-02-04 18:21:23 +0000166 toggle = next_dither_toggle(toggle);
rileya@google.com589708b2012-07-26 20:04:23 +0000167 }
168}
169
170void SkTwoPointConicalGradient::init() {
171 fRec.init(fCenter1, fRadius1, fCenter2, fRadius2);
172 fPtsToUnit.reset();
173}
174
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000175/////////////////////////////////////////////////////////////////////
176
rileya@google.com589708b2012-07-26 20:04:23 +0000177SkTwoPointConicalGradient::SkTwoPointConicalGradient(
178 const SkPoint& start, SkScalar startRadius,
179 const SkPoint& end, SkScalar endRadius,
180 const SkColor colors[], const SkScalar pos[],
181 int colorCount, SkShader::TileMode mode,
182 SkUnitMapper* mapper)
183 : SkGradientShaderBase(colors, pos, colorCount, mode, mapper),
184 fCenter1(start),
185 fCenter2(end),
186 fRadius1(startRadius),
187 fRadius2(endRadius) {
188 // this is degenerate, and should be caught by our caller
189 SkASSERT(fCenter1 != fCenter2 || fRadius1 != fRadius2);
190 this->init();
191}
192
commit-bot@chromium.org3fbab822013-03-20 00:49:57 +0000193bool SkTwoPointConicalGradient::isOpaque() const {
194 // Because areas outside the cone are left untouched, we cannot treat the
195 // shader as opaque even if the gradient itself is opaque.
196 return false;
197}
198
rileya@google.com589708b2012-07-26 20:04:23 +0000199void SkTwoPointConicalGradient::shadeSpan(int x, int y, SkPMColor* dstCParam,
200 int count) {
reed@google.com60040292013-02-04 18:21:23 +0000201 int toggle = init_dither_toggle(x, y);
reed@google.com60040292013-02-04 18:21:23 +0000202
rileya@google.com589708b2012-07-26 20:04:23 +0000203 SkASSERT(count > 0);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000204
rileya@google.com589708b2012-07-26 20:04:23 +0000205 SkPMColor* SK_RESTRICT dstC = dstCParam;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000206
rileya@google.com589708b2012-07-26 20:04:23 +0000207 SkMatrix::MapXYProc dstProc = fDstToIndexProc;
bsalomon@google.com100abf42012-09-05 17:40:04 +0000208
rileya@google.com589708b2012-07-26 20:04:23 +0000209 const SkPMColor* SK_RESTRICT cache = this->getCache32();
210
reed@google.com60040292013-02-04 18:21:23 +0000211 TwoPointConicalProc shadeProc = twopoint_repeat;
rileya@google.com589708b2012-07-26 20:04:23 +0000212 if (SkShader::kClamp_TileMode == fTileMode) {
213 shadeProc = twopoint_clamp;
214 } else if (SkShader::kMirror_TileMode == fTileMode) {
215 shadeProc = twopoint_mirror;
216 } else {
217 SkASSERT(SkShader::kRepeat_TileMode == fTileMode);
218 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000219
rileya@google.com589708b2012-07-26 20:04:23 +0000220 if (fDstToIndexClass != kPerspective_MatrixClass) {
221 SkPoint srcPt;
222 dstProc(fDstToIndex, SkIntToScalar(x) + SK_ScalarHalf,
223 SkIntToScalar(y) + SK_ScalarHalf, &srcPt);
224 SkScalar dx, fx = srcPt.fX;
225 SkScalar dy, fy = srcPt.fY;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000226
rileya@google.com589708b2012-07-26 20:04:23 +0000227 if (fDstToIndexClass == kFixedStepInX_MatrixClass) {
228 SkFixed fixedX, fixedY;
229 (void)fDstToIndex.fixedStepInX(SkIntToScalar(y), &fixedX, &fixedY);
230 dx = SkFixedToScalar(fixedX);
231 dy = SkFixedToScalar(fixedY);
232 } else {
233 SkASSERT(fDstToIndexClass == kLinear_MatrixClass);
234 dx = fDstToIndex.getScaleX();
235 dy = fDstToIndex.getSkewY();
236 }
237
238 fRec.setup(fx, fy, dx, dy);
reed@google.com60040292013-02-04 18:21:23 +0000239 (*shadeProc)(&fRec, dstC, cache, toggle, count);
rileya@google.com589708b2012-07-26 20:04:23 +0000240 } else { // perspective case
241 SkScalar dstX = SkIntToScalar(x);
242 SkScalar dstY = SkIntToScalar(y);
243 for (; count > 0; --count) {
244 SkPoint srcPt;
245 dstProc(fDstToIndex, dstX, dstY, &srcPt);
246 dstX += SK_Scalar1;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000247
rileya@google.com589708b2012-07-26 20:04:23 +0000248 fRec.setup(srcPt.fX, srcPt.fY, 0, 0);
reed@google.com60040292013-02-04 18:21:23 +0000249 (*shadeProc)(&fRec, dstC, cache, toggle, 1);
reed@google.com60040292013-02-04 18:21:23 +0000250 toggle = next_dither_toggle(toggle);
rileya@google.com589708b2012-07-26 20:04:23 +0000251 }
252 }
253}
254
255bool SkTwoPointConicalGradient::setContext(const SkBitmap& device,
256 const SkPaint& paint,
257 const SkMatrix& matrix) {
258 if (!this->INHERITED::setContext(device, paint, matrix)) {
259 return false;
260 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000261
rileya@google.com589708b2012-07-26 20:04:23 +0000262 // we don't have a span16 proc
263 fFlags &= ~kHasSpan16_Flag;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000264
rileya@google.com589708b2012-07-26 20:04:23 +0000265 // in general, we might discard based on computed-radius, so clear
266 // this flag (todo: sometimes we can detect that we never discard...)
267 fFlags &= ~kOpaqueAlpha_Flag;
268
269 return true;
270}
271
272SkShader::BitmapType SkTwoPointConicalGradient::asABitmap(
273 SkBitmap* bitmap, SkMatrix* matrix, SkShader::TileMode* xy) const {
274 SkPoint diff = fCenter2 - fCenter1;
rileya@google.com589708b2012-07-26 20:04:23 +0000275 SkScalar diffLen = 0;
276
277 if (bitmap) {
rileya@google.com1c6d64b2012-07-27 15:49:05 +0000278 this->getGradientTableBitmap(bitmap);
rileya@google.com589708b2012-07-26 20:04:23 +0000279 }
280 if (matrix) {
281 diffLen = diff.length();
282 }
283 if (matrix) {
284 if (diffLen) {
285 SkScalar invDiffLen = SkScalarInvert(diffLen);
286 // rotate to align circle centers with the x-axis
287 matrix->setSinCos(-SkScalarMul(invDiffLen, diff.fY),
288 SkScalarMul(invDiffLen, diff.fX));
289 } else {
290 matrix->reset();
291 }
292 matrix->preTranslate(-fCenter1.fX, -fCenter1.fY);
293 }
294 if (xy) {
295 xy[0] = fTileMode;
296 xy[1] = kClamp_TileMode;
297 }
298 return kTwoPointConical_BitmapType;
299}
300
301SkShader::GradientType SkTwoPointConicalGradient::asAGradient(
302 GradientInfo* info) const {
303 if (info) {
304 commonAsAGradient(info);
305 info->fPoint[0] = fCenter1;
306 info->fPoint[1] = fCenter2;
307 info->fRadius[0] = fRadius1;
308 info->fRadius[1] = fRadius2;
309 }
310 return kConical_GradientType;
311}
312
rileya@google.com589708b2012-07-26 20:04:23 +0000313SkTwoPointConicalGradient::SkTwoPointConicalGradient(
314 SkFlattenableReadBuffer& buffer)
315 : INHERITED(buffer),
316 fCenter1(buffer.readPoint()),
317 fCenter2(buffer.readPoint()),
318 fRadius1(buffer.readScalar()),
319 fRadius2(buffer.readScalar()) {
320 this->init();
321};
322
323void SkTwoPointConicalGradient::flatten(
324 SkFlattenableWriteBuffer& buffer) const {
325 this->INHERITED::flatten(buffer);
326 buffer.writePoint(fCenter1);
327 buffer.writePoint(fCenter2);
328 buffer.writeScalar(fRadius1);
329 buffer.writeScalar(fRadius2);
330}
331
rileya@google.comd7cc6512012-07-27 14:00:39 +0000332/////////////////////////////////////////////////////////////////////
333
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000334#if SK_SUPPORT_GPU
335
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +0000336#include "GrTBackendEffectFactory.h"
337
rileya@google.comd7cc6512012-07-27 14:00:39 +0000338// For brevity
339typedef GrGLUniformManager::UniformHandle UniformHandle;
340static const UniformHandle kInvalidUniformHandle = GrGLUniformManager::kInvalidUniformHandle;
341
bsalomon@google.com0707c292012-10-25 21:45:42 +0000342class GrGLConical2Gradient : public GrGLGradientEffect {
rileya@google.comd7cc6512012-07-27 14:00:39 +0000343public:
344
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000345 GrGLConical2Gradient(const GrBackendEffectFactory& factory,
bsalomon@google.com6340a412013-01-22 19:55:59 +0000346 const GrEffectRef&);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000347 virtual ~GrGLConical2Gradient() { }
348
bsalomon@google.comf78df332012-10-29 12:43:38 +0000349 virtual void emitCode(GrGLShaderBuilder*,
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +0000350 const GrEffectStage&,
bsalomon@google.comf78df332012-10-29 12:43:38 +0000351 EffectKey,
352 const char* vertexCoords,
353 const char* outputColor,
354 const char* inputColor,
355 const TextureSamplerArray&) SK_OVERRIDE;
bsalomon@google.com28a15fb2012-10-26 17:53:18 +0000356 virtual void setData(const GrGLUniformManager&, const GrEffectStage&) SK_OVERRIDE;
rileya@google.comd7cc6512012-07-27 14:00:39 +0000357
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +0000358 static EffectKey GenKey(const GrEffectStage&, const GrGLCaps& caps);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000359
360protected:
361
362 UniformHandle fVSParamUni;
363 UniformHandle fFSParamUni;
364
365 const char* fVSVaryingName;
366 const char* fFSVaryingName;
367
368 bool fIsDegenerate;
369
370 // @{
371 /// Values last uploaded as uniforms
372
bsalomon@google.com81712882012-11-01 17:12:34 +0000373 SkScalar fCachedCenter;
374 SkScalar fCachedRadius;
375 SkScalar fCachedDiffRadius;
rileya@google.comd7cc6512012-07-27 14:00:39 +0000376
377 // @}
378
379private:
380
bsalomon@google.com0707c292012-10-25 21:45:42 +0000381 typedef GrGLGradientEffect INHERITED;
rileya@google.comd7cc6512012-07-27 14:00:39 +0000382
383};
384
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000385/////////////////////////////////////////////////////////////////////
386
387class GrConical2Gradient : public GrGradientEffect {
388public:
389
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000390 static GrEffectRef* Create(GrContext* ctx,
391 const SkTwoPointConicalGradient& shader,
392 const SkMatrix& matrix,
393 SkShader::TileMode tm) {
bsalomon@google.com6340a412013-01-22 19:55:59 +0000394 AutoEffectUnref effect(SkNEW_ARGS(GrConical2Gradient, (ctx, shader, matrix, tm)));
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000395 return CreateEffectRef(effect);
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000396 }
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000397
398 virtual ~GrConical2Gradient() { }
399
400 static const char* Name() { return "Two-Point Conical Gradient"; }
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000401 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
402 return GrTBackendEffectFactory<GrConical2Gradient>::getInstance();
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000403 }
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000404
405 // The radial gradient parameters can collapse to a linear (instead of quadratic) equation.
406 bool isDegenerate() const { return SkScalarAbs(fDiffRadius) == SkScalarAbs(fCenterX1); }
bsalomon@google.com81712882012-11-01 17:12:34 +0000407 SkScalar center() const { return fCenterX1; }
408 SkScalar diffRadius() const { return fDiffRadius; }
409 SkScalar radius() const { return fRadius0; }
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000410
bsalomon@google.com422e81a2012-10-25 14:11:03 +0000411 typedef GrGLConical2Gradient GLEffect;
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000412
413private:
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000414 virtual bool onIsEqual(const GrEffect& sBase) const SK_OVERRIDE {
bsalomon@google.com6340a412013-01-22 19:55:59 +0000415 const GrConical2Gradient& s = CastEffect<GrConical2Gradient>(sBase);
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000416 return (INHERITED::onIsEqual(sBase) &&
417 this->fCenterX1 == s.fCenterX1 &&
418 this->fRadius0 == s.fRadius0 &&
419 this->fDiffRadius == s.fDiffRadius);
420 }
421
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000422 GrConical2Gradient(GrContext* ctx,
423 const SkTwoPointConicalGradient& shader,
424 const SkMatrix& matrix,
425 SkShader::TileMode tm)
426 : INHERITED(ctx, shader, matrix, tm)
427 , fCenterX1(shader.getCenterX1())
428 , fRadius0(shader.getStartRadius())
429 , fDiffRadius(shader.getDiffRadius()) { }
430
bsalomon@google.comf271cc72012-10-24 19:35:13 +0000431 GR_DECLARE_EFFECT_TEST;
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000432
433 // @{
434 // Cache of values - these can change arbitrarily, EXCEPT
435 // we shouldn't change between degenerate and non-degenerate?!
436
bsalomon@google.com81712882012-11-01 17:12:34 +0000437 SkScalar fCenterX1;
438 SkScalar fRadius0;
439 SkScalar fDiffRadius;
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000440
441 // @}
442
443 typedef GrGradientEffect INHERITED;
444};
445
bsalomon@google.comf271cc72012-10-24 19:35:13 +0000446GR_DEFINE_EFFECT_TEST(GrConical2Gradient);
bsalomon@google.comd4726202012-08-03 14:34:46 +0000447
bsalomon@google.com73a96942013-02-13 16:31:19 +0000448GrEffectRef* GrConical2Gradient::TestCreate(SkMWCRandom* random,
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000449 GrContext* context,
450 GrTexture**) {
bsalomon@google.comd4726202012-08-03 14:34:46 +0000451 SkPoint center1 = {random->nextUScalar1(), random->nextUScalar1()};
452 SkScalar radius1 = random->nextUScalar1();
453 SkPoint center2;
454 SkScalar radius2;
455 do {
bsalomon@google.comfb883bf2012-12-11 15:32:04 +0000456 center2.set(random->nextUScalar1(), random->nextUScalar1());
bsalomon@google.comd4726202012-08-03 14:34:46 +0000457 radius2 = random->nextUScalar1 ();
458 // If the circles are identical the factory will give us an empty shader.
459 } while (radius1 == radius2 && center1 == center2);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000460
bsalomon@google.comd4726202012-08-03 14:34:46 +0000461 SkColor colors[kMaxRandomGradientColors];
462 SkScalar stopsArray[kMaxRandomGradientColors];
463 SkScalar* stops = stopsArray;
464 SkShader::TileMode tm;
465 int colorCount = RandomGradientParams(random, colors, &stops, &tm);
466 SkAutoTUnref<SkShader> shader(SkGradientShader::CreateTwoPointConical(center1, radius1,
467 center2, radius2,
468 colors, stops, colorCount,
469 tm));
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000470 SkPaint paint;
471 return shader->asNewEffect(context, paint);
bsalomon@google.comd4726202012-08-03 14:34:46 +0000472}
473
474
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000475/////////////////////////////////////////////////////////////////////
476
bsalomon@google.com6340a412013-01-22 19:55:59 +0000477GrGLConical2Gradient::GrGLConical2Gradient(const GrBackendEffectFactory& factory,
478 const GrEffectRef& baseData)
rileya@google.comd7cc6512012-07-27 14:00:39 +0000479 : INHERITED(factory)
480 , fVSParamUni(kInvalidUniformHandle)
481 , fFSParamUni(kInvalidUniformHandle)
482 , fVSVaryingName(NULL)
483 , fFSVaryingName(NULL)
bsalomon@google.com81712882012-11-01 17:12:34 +0000484 , fCachedCenter(SK_ScalarMax)
485 , fCachedRadius(-SK_ScalarMax)
486 , fCachedDiffRadius(-SK_ScalarMax) {
rileya@google.comd7cc6512012-07-27 14:00:39 +0000487
bsalomon@google.com6340a412013-01-22 19:55:59 +0000488 const GrConical2Gradient& data = CastEffect<GrConical2Gradient>(baseData);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000489 fIsDegenerate = data.isDegenerate();
490}
491
bsalomon@google.comf78df332012-10-29 12:43:38 +0000492void GrGLConical2Gradient::emitCode(GrGLShaderBuilder* builder,
sugoi@google.come0e385c2013-03-11 18:50:03 +0000493 const GrEffectStage&,
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000494 EffectKey key,
bsalomon@google.comf78df332012-10-29 12:43:38 +0000495 const char* vertexCoords,
496 const char* outputColor,
497 const char* inputColor,
498 const TextureSamplerArray& samplers) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000499 const char* fsCoords;
500 const char* vsCoordsVarying;
501 GrSLType coordsVaryingType;
502 this->setupMatrix(builder, key, vertexCoords, &fsCoords, &vsCoordsVarying, &coordsVaryingType);
503
bsalomon@google.comf78df332012-10-29 12:43:38 +0000504 this->emitYCoordUniform(builder);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000505 // 2 copies of uniform array, 1 for each of vertex & fragment shader,
506 // to work around Xoom bug. Doesn't seem to cause performance decrease
507 // in test apps, but need to keep an eye on it.
508 fVSParamUni = builder->addUniformArray(GrGLShaderBuilder::kVertex_ShaderType,
509 kFloat_GrSLType, "Conical2VSParams", 6);
510 fFSParamUni = builder->addUniformArray(GrGLShaderBuilder::kFragment_ShaderType,
511 kFloat_GrSLType, "Conical2FSParams", 6);
512
513 // For radial gradients without perspective we can pass the linear
514 // part of the quadratic as a varying.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000515 if (kVec2f_GrSLType == coordsVaryingType) {
rileya@google.comd7cc6512012-07-27 14:00:39 +0000516 builder->addVarying(kFloat_GrSLType, "Conical2BCoeff",
517 &fVSVaryingName, &fFSVaryingName);
518 }
rileya@google.comd7cc6512012-07-27 14:00:39 +0000519
bsalomon@google.comf78df332012-10-29 12:43:38 +0000520 // VS
521 {
bsalomon@google.comf78df332012-10-29 12:43:38 +0000522 SkString p2; // distance between centers
523 SkString p3; // start radius
524 SkString p5; // difference in radii (r1 - r0)
525 builder->getUniformVariable(fVSParamUni).appendArrayAccess(2, &p2);
526 builder->getUniformVariable(fVSParamUni).appendArrayAccess(3, &p3);
527 builder->getUniformVariable(fVSParamUni).appendArrayAccess(5, &p5);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000528
bsalomon@google.comf78df332012-10-29 12:43:38 +0000529 // For radial gradients without perspective we can pass the linear
530 // part of the quadratic as a varying.
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000531 if (kVec2f_GrSLType == coordsVaryingType) {
bsalomon@google.comf78df332012-10-29 12:43:38 +0000532 // r2Var = -2 * (r2Parm[2] * varCoord.x - r2Param[3] * r2Param[5])
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000533 builder->vsCodeAppendf("\t%s = -2.0 * (%s * %s.x + %s * %s);\n",
534 fVSVaryingName, p2.c_str(),
535 vsCoordsVarying, p3.c_str(), p5.c_str());
bsalomon@google.comf78df332012-10-29 12:43:38 +0000536 }
rileya@google.comd7cc6512012-07-27 14:00:39 +0000537 }
538
bsalomon@google.comf78df332012-10-29 12:43:38 +0000539 // FS
540 {
rileya@google.comd7cc6512012-07-27 14:00:39 +0000541
bsalomon@google.comf78df332012-10-29 12:43:38 +0000542 SkString cName("c");
543 SkString ac4Name("ac4");
544 SkString dName("d");
545 SkString qName("q");
546 SkString r0Name("r0");
547 SkString r1Name("r1");
548 SkString tName("t");
549 SkString p0; // 4a
550 SkString p1; // 1/a
551 SkString p2; // distance between centers
552 SkString p3; // start radius
553 SkString p4; // start radius squared
554 SkString p5; // difference in radii (r1 - r0)
rileya@google.comd7cc6512012-07-27 14:00:39 +0000555
bsalomon@google.comf78df332012-10-29 12:43:38 +0000556 builder->getUniformVariable(fFSParamUni).appendArrayAccess(0, &p0);
557 builder->getUniformVariable(fFSParamUni).appendArrayAccess(1, &p1);
558 builder->getUniformVariable(fFSParamUni).appendArrayAccess(2, &p2);
559 builder->getUniformVariable(fFSParamUni).appendArrayAccess(3, &p3);
560 builder->getUniformVariable(fFSParamUni).appendArrayAccess(4, &p4);
561 builder->getUniformVariable(fFSParamUni).appendArrayAccess(5, &p5);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000562
bsalomon@google.comf78df332012-10-29 12:43:38 +0000563 // If we we're able to interpolate the linear component,
564 // bVar is the varying; otherwise compute it
565 SkString bVar;
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000566 if (kVec2f_GrSLType == coordsVaryingType) {
bsalomon@google.comf78df332012-10-29 12:43:38 +0000567 bVar = fFSVaryingName;
568 } else {
569 bVar = "b";
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000570 builder->fsCodeAppendf("\tfloat %s = -2.0 * (%s * %s.x + %s * %s);\n",
571 bVar.c_str(), p2.c_str(), fsCoords,
572 p3.c_str(), p5.c_str());
bsalomon@google.comf78df332012-10-29 12:43:38 +0000573 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000574
bsalomon@google.comf78df332012-10-29 12:43:38 +0000575 // output will default to transparent black (we simply won't write anything
576 // else to it if invalid, instead of discarding or returning prematurely)
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000577 builder->fsCodeAppendf("\t%s = vec4(0.0,0.0,0.0,0.0);\n", outputColor);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000578
bsalomon@google.comf78df332012-10-29 12:43:38 +0000579 // c = (x^2)+(y^2) - params[4]
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000580 builder->fsCodeAppendf("\tfloat %s = dot(%s, %s) - %s;\n", cName.c_str(),
581 fsCoords, fsCoords,
582 p4.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000583
bsalomon@google.comf78df332012-10-29 12:43:38 +0000584 // Non-degenerate case (quadratic)
585 if (!fIsDegenerate) {
rileya@google.comd7cc6512012-07-27 14:00:39 +0000586
bsalomon@google.comf78df332012-10-29 12:43:38 +0000587 // ac4 = params[0] * c
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000588 builder->fsCodeAppendf("\tfloat %s = %s * %s;\n", ac4Name.c_str(), p0.c_str(),
589 cName.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000590
bsalomon@google.comf78df332012-10-29 12:43:38 +0000591 // d = b^2 - ac4
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000592 builder->fsCodeAppendf("\tfloat %s = %s * %s - %s;\n", dName.c_str(),
593 bVar.c_str(), bVar.c_str(), ac4Name.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000594
bsalomon@google.comf78df332012-10-29 12:43:38 +0000595 // only proceed if discriminant is >= 0
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000596 builder->fsCodeAppendf("\tif (%s >= 0.0) {\n", dName.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000597
bsalomon@google.comf78df332012-10-29 12:43:38 +0000598 // intermediate value we'll use to compute the roots
599 // q = -0.5 * (b +/- sqrt(d))
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000600 builder->fsCodeAppendf("\t\tfloat %s = -0.5 * (%s + (%s < 0.0 ? -1.0 : 1.0)"
601 " * sqrt(%s));\n", qName.c_str(), bVar.c_str(),
602 bVar.c_str(), dName.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000603
bsalomon@google.comf78df332012-10-29 12:43:38 +0000604 // compute both roots
605 // r0 = q * params[1]
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000606 builder->fsCodeAppendf("\t\tfloat %s = %s * %s;\n", r0Name.c_str(),
607 qName.c_str(), p1.c_str());
bsalomon@google.comf78df332012-10-29 12:43:38 +0000608 // r1 = c / q
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000609 builder->fsCodeAppendf("\t\tfloat %s = %s / %s;\n", r1Name.c_str(),
610 cName.c_str(), qName.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000611
bsalomon@google.comf78df332012-10-29 12:43:38 +0000612 // Note: If there are two roots that both generate radius(t) > 0, the
613 // Canvas spec says to choose the larger t.
rileya@google.comd7cc6512012-07-27 14:00:39 +0000614
bsalomon@google.comf78df332012-10-29 12:43:38 +0000615 // so we'll look at the larger one first:
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000616 builder->fsCodeAppendf("\t\tfloat %s = max(%s, %s);\n", tName.c_str(),
617 r0Name.c_str(), r1Name.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000618
bsalomon@google.comf78df332012-10-29 12:43:38 +0000619 // if r(t) > 0, then we're done; t will be our x coordinate
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000620 builder->fsCodeAppendf("\t\tif (%s * %s + %s > 0.0) {\n", tName.c_str(),
621 p5.c_str(), p3.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000622
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000623 builder->fsCodeAppend("\t\t");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000624 this->emitColorLookup(builder, tName.c_str(), outputColor, inputColor, samplers[0]);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000625
bsalomon@google.comf78df332012-10-29 12:43:38 +0000626 // otherwise, if r(t) for the larger root was <= 0, try the other root
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000627 builder->fsCodeAppend("\t\t} else {\n");
628 builder->fsCodeAppendf("\t\t\t%s = min(%s, %s);\n", tName.c_str(),
629 r0Name.c_str(), r1Name.c_str());
rileya@google.comd7cc6512012-07-27 14:00:39 +0000630
bsalomon@google.comf78df332012-10-29 12:43:38 +0000631 // if r(t) > 0 for the smaller root, then t will be our x coordinate
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000632 builder->fsCodeAppendf("\t\t\tif (%s * %s + %s > 0.0) {\n",
633 tName.c_str(), p5.c_str(), p3.c_str());
bsalomon@google.comf78df332012-10-29 12:43:38 +0000634
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000635 builder->fsCodeAppend("\t\t\t");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000636 this->emitColorLookup(builder, tName.c_str(), outputColor, inputColor, samplers[0]);
637
638 // end if (r(t) > 0) for smaller root
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000639 builder->fsCodeAppend("\t\t\t}\n");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000640 // end if (r(t) > 0), else, for larger root
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000641 builder->fsCodeAppend("\t\t}\n");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000642 // end if (discriminant >= 0)
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000643 builder->fsCodeAppend("\t}\n");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000644 } else {
645
646 // linear case: t = -c/b
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000647 builder->fsCodeAppendf("\tfloat %s = -(%s / %s);\n", tName.c_str(),
648 cName.c_str(), bVar.c_str());
bsalomon@google.comf78df332012-10-29 12:43:38 +0000649
650 // if r(t) > 0, then t will be the x coordinate
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000651 builder->fsCodeAppendf("\tif (%s * %s + %s > 0.0) {\n", tName.c_str(),
652 p5.c_str(), p3.c_str());
653 builder->fsCodeAppend("\t");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000654 this->emitColorLookup(builder, tName.c_str(), outputColor, inputColor, samplers[0]);
bsalomon@google.comf910d3b2013-03-07 17:06:57 +0000655 builder->fsCodeAppend("\t}\n");
bsalomon@google.comf78df332012-10-29 12:43:38 +0000656 }
rileya@google.comd7cc6512012-07-27 14:00:39 +0000657 }
658}
659
bsalomon@google.com28a15fb2012-10-26 17:53:18 +0000660void GrGLConical2Gradient::setData(const GrGLUniformManager& uman, const GrEffectStage& stage) {
661 INHERITED::setData(uman, stage);
bsalomon@google.com6340a412013-01-22 19:55:59 +0000662 const GrConical2Gradient& data = GetEffectFromStage<GrConical2Gradient>(stage);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000663 GrAssert(data.isDegenerate() == fIsDegenerate);
bsalomon@google.com81712882012-11-01 17:12:34 +0000664 SkScalar centerX1 = data.center();
665 SkScalar radius0 = data.radius();
666 SkScalar diffRadius = data.diffRadius();
rileya@google.comd7cc6512012-07-27 14:00:39 +0000667
668 if (fCachedCenter != centerX1 ||
669 fCachedRadius != radius0 ||
670 fCachedDiffRadius != diffRadius) {
671
bsalomon@google.com81712882012-11-01 17:12:34 +0000672 SkScalar a = SkScalarMul(centerX1, centerX1) - diffRadius * diffRadius;
rileya@google.comd7cc6512012-07-27 14:00:39 +0000673
674 // When we're in the degenerate (linear) case, the second
675 // value will be INF but the program doesn't read it. (We
676 // use the same 6 uniforms even though we don't need them
677 // all in the linear case just to keep the code complexity
678 // down).
679 float values[6] = {
bsalomon@google.com81712882012-11-01 17:12:34 +0000680 SkScalarToFloat(a * 4),
681 1.f / (SkScalarToFloat(a)),
682 SkScalarToFloat(centerX1),
683 SkScalarToFloat(radius0),
684 SkScalarToFloat(SkScalarMul(radius0, radius0)),
685 SkScalarToFloat(diffRadius)
rileya@google.comd7cc6512012-07-27 14:00:39 +0000686 };
687
688 uman.set1fv(fVSParamUni, 0, 6, values);
689 uman.set1fv(fFSParamUni, 0, 6, values);
690 fCachedCenter = centerX1;
691 fCachedRadius = radius0;
692 fCachedDiffRadius = diffRadius;
693 }
694}
695
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +0000696GrGLEffect::EffectKey GrGLConical2Gradient::GenKey(const GrEffectStage& s, const GrGLCaps&) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000697 enum {
698 kIsDegenerate = 1 << kMatrixKeyBitCnt,
699 };
700
701 EffectKey key = GenMatrixKey(s);
bsalomon@google.com6340a412013-01-22 19:55:59 +0000702 if (GetEffectFromStage<GrConical2Gradient>(s).isDegenerate()) {
bsalomon@google.comd8b5fac2012-11-01 17:02:46 +0000703 key |= kIsDegenerate;
704 }
705 return key;
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000706}
rileya@google.comd7cc6512012-07-27 14:00:39 +0000707
708/////////////////////////////////////////////////////////////////////
709
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000710GrEffectRef* SkTwoPointConicalGradient::asNewEffect(GrContext* context, const SkPaint&) const {
bsalomon@google.com00835cc2013-01-14 17:07:22 +0000711 SkASSERT(NULL != context);
bsalomon@google.comf94b3a42012-10-31 18:09:01 +0000712 SkASSERT(fPtsToUnit.isIdentity());
713 // invert the localM, translate to center1, rotate so center2 is on x axis.
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000714 SkMatrix matrix;
bsalomon@google.comf94b3a42012-10-31 18:09:01 +0000715 if (!this->getLocalMatrix().invert(&matrix)) {
humper@google.com84831ac2013-01-14 22:09:54 +0000716 return NULL;
bsalomon@google.comf94b3a42012-10-31 18:09:01 +0000717 }
718 matrix.postTranslate(-fCenter1.fX, -fCenter1.fY);
719
rileya@google.com98e8b6d2012-07-31 20:38:06 +0000720 SkPoint diff = fCenter2 - fCenter1;
721 SkScalar diffLen = diff.length();
722 if (0 != diffLen) {
723 SkScalar invDiffLen = SkScalarInvert(diffLen);
bsalomon@google.comf94b3a42012-10-31 18:09:01 +0000724 SkMatrix rot;
725 rot.setSinCos(-SkScalarMul(invDiffLen, diff.fY),
726 SkScalarMul(invDiffLen, diff.fX));
727 matrix.postConcat(rot);
bsalomon@google.comdfdb7e52012-10-16 15:19:45 +0000728 }
729
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000730 return GrConical2Gradient::Create(context, *this, matrix, fTileMode);
rileya@google.comd7cc6512012-07-27 14:00:39 +0000731}
732
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000733#else
734
bsalomon@google.com5d2cd202013-01-16 15:31:06 +0000735GrEffectRef* SkTwoPointConicalGradient::asNewEffect(GrContext*, const SkPaint&) const {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000736 SkDEBUGFAIL("Should not call in GPU-less build");
bsalomon@google.come197cbf2013-01-14 16:46:26 +0000737 return NULL;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000738}
739
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000740#endif
robertphillips@google.com76f9e932013-01-15 20:17:47 +0000741
742#ifdef SK_DEVELOPER
743void SkTwoPointConicalGradient::toString(SkString* str) const {
744 str->append("SkTwoPointConicalGradient: (");
745
746 str->append("center1: (");
747 str->appendScalar(fCenter1.fX);
748 str->append(", ");
749 str->appendScalar(fCenter1.fY);
750 str->append(") radius1: ");
751 str->appendScalar(fRadius1);
752 str->append(" ");
753
754 str->append("center2: (");
755 str->appendScalar(fCenter2.fX);
756 str->append(", ");
757 str->appendScalar(fCenter2.fY);
758 str->append(") radius2: ");
759 str->appendScalar(fRadius2);
760 str->append(" ");
761
762 this->INHERITED::toString(str);
763
764 str->append(")");
765}
766#endif