blob: 528a6baa7e3616c9ae93bfbc711637133ab6c1e3 [file] [log] [blame]
fmalitabc590c02016-02-22 09:12:33 -08001/*
2 * Copyright 2016 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 "Sk4fLinearGradient.h"
fmalita83aa9202016-03-23 12:28:14 -07009#include "Sk4x4f.h"
Mike Reed75ae4212018-01-23 11:24:08 -050010#include "SkPaint.h"
fmalitabc590c02016-02-22 09:12:33 -080011
Ben Wagner8a1036c2016-11-09 15:00:49 -050012#include <cmath>
13
fmalitabc590c02016-02-22 09:12:33 -080014namespace {
15
Florin Malitaaa0ce822017-08-28 12:50:26 -040016template<typename dstType, ApplyPremul premul>
17void ramp(const Sk4f& c, const Sk4f& dc, dstType dst[], int n,
18 const Sk4f& bias0, const Sk4f& bias1) {
fmalitabc590c02016-02-22 09:12:33 -080019 SkASSERT(n > 0);
20
Florin Malitaaa0ce822017-08-28 12:50:26 -040021 const Sk4f dc2 = dc + dc,
22 dc4 = dc2 + dc2;
fmalitabc590c02016-02-22 09:12:33 -080023
Florin Malitaaa0ce822017-08-28 12:50:26 -040024 Sk4f c0 = c + DstTraits<dstType, premul>::pre_lerp_bias(bias0),
25 c1 = c + dc + DstTraits<dstType, premul>::pre_lerp_bias(bias1),
26 c2 = c0 + dc2,
27 c3 = c1 + dc2;
fmalitabc590c02016-02-22 09:12:33 -080028
29 while (n >= 4) {
Florin Malitaaa0ce822017-08-28 12:50:26 -040030 DstTraits<dstType, premul>::store4x(c0, c1, c2, c3, dst, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -080031 dst += 4;
32
33 c0 = c0 + dc4;
34 c1 = c1 + dc4;
35 c2 = c2 + dc4;
36 c3 = c3 + dc4;
37 n -= 4;
38 }
39 if (n & 2) {
Florin Malitaaa0ce822017-08-28 12:50:26 -040040 DstTraits<dstType, premul>::store(c0, dst++, bias0);
41 DstTraits<dstType, premul>::store(c1, dst++, bias1);
fmalitabc590c02016-02-22 09:12:33 -080042 c0 = c0 + dc2;
43 }
44 if (n & 1) {
Florin Malitaaa0ce822017-08-28 12:50:26 -040045 DstTraits<dstType, premul>::store(c0, dst, bias0);
fmalitabc590c02016-02-22 09:12:33 -080046 }
47}
48
49template<SkShader::TileMode>
50SkScalar pinFx(SkScalar);
51
52template<>
53SkScalar pinFx<SkShader::kClamp_TileMode>(SkScalar fx) {
54 return fx;
55}
56
57template<>
58SkScalar pinFx<SkShader::kRepeat_TileMode>(SkScalar fx) {
Florin Malita0fdde542016-11-14 15:54:04 -050059 SkScalar f = SkScalarFraction(fx);
60 if (f < 0) {
61 f = SkTMin(f + 1, nextafterf(1, 0));
62 }
63 SkASSERT(f >= 0);
64 SkASSERT(f < 1.0f);
65 return f;
fmalitabc590c02016-02-22 09:12:33 -080066}
67
68template<>
69SkScalar pinFx<SkShader::kMirror_TileMode>(SkScalar fx) {
Florin Malita0fdde542016-11-14 15:54:04 -050070 SkScalar f = SkScalarMod(fx, 2.0f);
71 if (f < 0) {
72 f = SkTMin(f + 2, nextafterf(2, 0));
73 }
74 SkASSERT(f >= 0);
75 SkASSERT(f < 2.0f);
76 return f;
fmalitabc590c02016-02-22 09:12:33 -080077}
78
Florin Malitae659c7f2017-02-09 13:46:55 -050079// true when x is in [k1,k2], or [k2, k1] when the interval is reversed.
fmalita6d7e4e82016-09-20 06:55:16 -070080// TODO(fmalita): hoist the reversed interval check out of this helper.
fmalita7520fc42016-03-04 11:01:24 -080081bool in_range(SkScalar x, SkScalar k1, SkScalar k2) {
82 SkASSERT(k1 != k2);
83 return (k1 < k2)
Florin Malitae659c7f2017-02-09 13:46:55 -050084 ? (x >= k1 && x <= k2)
85 : (x >= k2 && x <= k1);
fmalita7520fc42016-03-04 11:01:24 -080086}
87
fmalitabc590c02016-02-22 09:12:33 -080088} // anonymous namespace
89
90SkLinearGradient::
91LinearGradient4fContext::LinearGradient4fContext(const SkLinearGradient& shader,
92 const ContextRec& rec)
fmalita7520fc42016-03-04 11:01:24 -080093 : INHERITED(shader, rec) {
fmalita7520fc42016-03-04 11:01:24 -080094
fmalita7e6fcf82016-03-10 11:18:43 -080095 // Our fast path expects interval points to be monotonically increasing in x.
Florin Malita4d41b8f2017-07-12 14:35:46 -040096 const bool reverseIntervals = std::signbit(fDstToPos.getScaleX());
Florin Malita0e36b3f2017-06-05 23:33:45 -040097 fIntervals.init(shader, rec.fDstColorSpace, shader.fTileMode,
Florin Malitada4545b2017-03-23 17:04:54 -040098 fColorsArePremul, rec.fPaint->getAlpha() * (1.0f / 255), reverseIntervals);
fmalita7520fc42016-03-04 11:01:24 -080099
Florin Malitada4545b2017-03-23 17:04:54 -0400100 SkASSERT(fIntervals->count() > 0);
101 fCachedInterval = fIntervals->begin();
fmalita7520fc42016-03-04 11:01:24 -0800102}
103
Florin Malitada4545b2017-03-23 17:04:54 -0400104const Sk4fGradientInterval*
fmalita7520fc42016-03-04 11:01:24 -0800105SkLinearGradient::LinearGradient4fContext::findInterval(SkScalar fx) const {
Florin Malitacf20f782017-04-07 14:56:14 -0400106 SkASSERT(in_range(fx, fIntervals->front().fT0, fIntervals->back().fT1));
fmalita7520fc42016-03-04 11:01:24 -0800107
108 if (1) {
109 // Linear search, using the last scanline interval as a starting point.
Florin Malitada4545b2017-03-23 17:04:54 -0400110 SkASSERT(fCachedInterval >= fIntervals->begin());
111 SkASSERT(fCachedInterval < fIntervals->end());
fmalita7520fc42016-03-04 11:01:24 -0800112 const int search_dir = fDstToPos.getScaleX() >= 0 ? 1 : -1;
Florin Malitacf20f782017-04-07 14:56:14 -0400113 while (!in_range(fx, fCachedInterval->fT0, fCachedInterval->fT1)) {
fmalita7520fc42016-03-04 11:01:24 -0800114 fCachedInterval += search_dir;
Florin Malitada4545b2017-03-23 17:04:54 -0400115 if (fCachedInterval >= fIntervals->end()) {
116 fCachedInterval = fIntervals->begin();
117 } else if (fCachedInterval < fIntervals->begin()) {
118 fCachedInterval = fIntervals->end() - 1;
fmalita7520fc42016-03-04 11:01:24 -0800119 }
120 }
121 return fCachedInterval;
122 } else {
123 // Binary search. Seems less effective than linear + caching.
Florin Malitada4545b2017-03-23 17:04:54 -0400124 const auto* i0 = fIntervals->begin();
125 const auto* i1 = fIntervals->end() - 1;
fmalita7520fc42016-03-04 11:01:24 -0800126
127 while (i0 != i1) {
128 SkASSERT(i0 < i1);
Florin Malitacf20f782017-04-07 14:56:14 -0400129 SkASSERT(in_range(fx, i0->fT0, i1->fT1));
fmalita7520fc42016-03-04 11:01:24 -0800130
Florin Malitada4545b2017-03-23 17:04:54 -0400131 const auto* i = i0 + ((i1 - i0) >> 1);
fmalita7520fc42016-03-04 11:01:24 -0800132
Florin Malitacf20f782017-04-07 14:56:14 -0400133 if (in_range(fx, i0->fT0, i->fT1)) {
fmalita7520fc42016-03-04 11:01:24 -0800134 i1 = i;
135 } else {
Florin Malitacf20f782017-04-07 14:56:14 -0400136 SkASSERT(in_range(fx, i->fT1, i1->fT1));
fmalita7520fc42016-03-04 11:01:24 -0800137 i0 = i + 1;
138 }
139 }
140
Florin Malitacf20f782017-04-07 14:56:14 -0400141 SkASSERT(in_range(fx, i0->fT0, i0->fT1));
fmalita7520fc42016-03-04 11:01:24 -0800142 return i0;
143 }
144}
fmalitabc590c02016-02-22 09:12:33 -0800145
Florin Malitaaa0ce822017-08-28 12:50:26 -0400146
147void SkLinearGradient::
148LinearGradient4fContext::shadeSpan(int x, int y, SkPMColor dst[], int count) {
149 SkASSERT(count > 0);
150
151 float bias0 = 0,
152 bias1 = 0;
153
154 if (fDither) {
155 static constexpr float dither_cell[] = {
156 -3/8.0f, 1/8.0f,
157 3/8.0f, -1/8.0f,
158 };
159
160 const int rowIndex = (y & 1) << 1;
161 bias0 = dither_cell[rowIndex + 0];
162 bias1 = dither_cell[rowIndex + 1];
163
164 if (x & 1) {
165 SkTSwap(bias0, bias1);
166 }
167 }
168
169 if (fColorsArePremul) {
170 // In premul interpolation mode, components are pre-scaled by 255 and the store
171 // op is truncating. We pre-bias here to achieve rounding.
172 bias0 += 0.5f;
173 bias1 += 0.5f;
174
175 this->shadePremulSpan<SkPMColor, ApplyPremul::False>(x, y, dst, count, bias0, bias1);
176 } else {
177 // In unpremul interpolation mode, Components are not pre-scaled.
178 bias0 *= 1/255.0f;
179 bias1 *= 1/255.0f;
180
181 this->shadePremulSpan<SkPMColor, ApplyPremul::True >(x, y, dst, count, bias0, bias1);
182 }
183}
184
fmalitabc590c02016-02-22 09:12:33 -0800185void SkLinearGradient::
fmalitabc590c02016-02-22 09:12:33 -0800186LinearGradient4fContext::shadeSpan4f(int x, int y, SkPM4f dst[], int count) {
fmalitabc590c02016-02-22 09:12:33 -0800187 SkASSERT(count > 0);
Florin Malitaaa0ce822017-08-28 12:50:26 -0400188
189 // 4f dests are dithered at a later stage, if needed.
190 static constexpr float bias0 = 0,
191 bias1 = 0;
fmalitabc590c02016-02-22 09:12:33 -0800192 if (fColorsArePremul) {
Florin Malitaaa0ce822017-08-28 12:50:26 -0400193 this->shadePremulSpan<SkPM4f, ApplyPremul::False>(x, y, dst, count, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -0800194 } else {
Florin Malitaaa0ce822017-08-28 12:50:26 -0400195 this->shadePremulSpan<SkPM4f, ApplyPremul::True >(x, y, dst, count, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -0800196 }
197}
198
Florin Malitaaa0ce822017-08-28 12:50:26 -0400199template<typename dstType, ApplyPremul premul>
fmalitabc590c02016-02-22 09:12:33 -0800200void SkLinearGradient::
Florin Malitaaa0ce822017-08-28 12:50:26 -0400201LinearGradient4fContext::shadePremulSpan(int x, int y, dstType dst[], int count,
202 float bias0, float bias1) const {
203 const SkLinearGradient& shader = static_cast<const SkLinearGradient&>(fShader);
fmalitabc590c02016-02-22 09:12:33 -0800204 switch (shader.fTileMode) {
205 case kClamp_TileMode:
Florin Malitaaa0ce822017-08-28 12:50:26 -0400206 this->shadeSpanInternal<dstType, premul, kClamp_TileMode >(x, y, dst, count, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -0800207 break;
208 case kRepeat_TileMode:
Florin Malitaaa0ce822017-08-28 12:50:26 -0400209 this->shadeSpanInternal<dstType, premul, kRepeat_TileMode>(x, y, dst, count, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -0800210 break;
211 case kMirror_TileMode:
Florin Malitaaa0ce822017-08-28 12:50:26 -0400212 this->shadeSpanInternal<dstType, premul, kMirror_TileMode>(x, y, dst, count, bias0, bias1);
fmalitabc590c02016-02-22 09:12:33 -0800213 break;
214 }
215}
216
Florin Malitaaa0ce822017-08-28 12:50:26 -0400217template<typename dstType, ApplyPremul premul, SkShader::TileMode tileMode>
fmalitabc590c02016-02-22 09:12:33 -0800218void SkLinearGradient::
Florin Malitaaa0ce822017-08-28 12:50:26 -0400219LinearGradient4fContext::shadeSpanInternal(int x, int y, dstType dst[], int count,
220 float bias0, float bias1) const {
fmalitabc590c02016-02-22 09:12:33 -0800221 SkPoint pt;
222 fDstToPosProc(fDstToPos,
223 x + SK_ScalarHalf,
224 y + SK_ScalarHalf,
225 &pt);
226 const SkScalar fx = pinFx<tileMode>(pt.x());
227 const SkScalar dx = fDstToPos.getScaleX();
Florin Malitaaa0ce822017-08-28 12:50:26 -0400228 LinearIntervalProcessor<dstType, premul, tileMode> proc(fIntervals->begin(),
229 fIntervals->end() - 1,
230 this->findInterval(fx),
231 fx,
232 dx,
233 SkScalarNearlyZero(dx * count));
234 Sk4f bias4f0(bias0),
235 bias4f1(bias1);
236
fmalitabc590c02016-02-22 09:12:33 -0800237 while (count > 0) {
238 // What we really want here is SkTPin(advance, 1, count)
239 // but that's a significant perf hit for >> stops; investigate.
240 const int n = SkScalarTruncToInt(
241 SkTMin<SkScalar>(proc.currentAdvance() + 1, SkIntToScalar(count)));
242
243 // The current interval advance can be +inf (e.g. when reaching
244 // the clamp mode end intervals) - when that happens, we expect to
245 // a) consume all remaining count in one swoop
246 // b) return a zero color gradient
247 SkASSERT(SkScalarIsFinite(proc.currentAdvance())
248 || (n == count && proc.currentRampIsZero()));
249
250 if (proc.currentRampIsZero()) {
Florin Malitaaa0ce822017-08-28 12:50:26 -0400251 DstTraits<dstType, premul>::store(proc.currentColor(), dst, n);
fmalitabc590c02016-02-22 09:12:33 -0800252 } else {
Florin Malitaaa0ce822017-08-28 12:50:26 -0400253 ramp<dstType, premul>(proc.currentColor(), proc.currentColorGrad(), dst, n,
254 bias4f0, bias4f1);
fmalitabc590c02016-02-22 09:12:33 -0800255 }
256
257 proc.advance(SkIntToScalar(n));
258 count -= n;
259 dst += n;
Florin Malitaaa0ce822017-08-28 12:50:26 -0400260
261 if (n & 1) {
262 SkTSwap(bias4f0, bias4f1);
263 }
fmalitabc590c02016-02-22 09:12:33 -0800264 }
265}
266
Florin Malitaaa0ce822017-08-28 12:50:26 -0400267template<typename dstType, ApplyPremul premul, SkShader::TileMode tileMode>
fmalitabc590c02016-02-22 09:12:33 -0800268class SkLinearGradient::
269LinearGradient4fContext::LinearIntervalProcessor {
270public:
Florin Malitada4545b2017-03-23 17:04:54 -0400271 LinearIntervalProcessor(const Sk4fGradientInterval* firstInterval,
272 const Sk4fGradientInterval* lastInterval,
273 const Sk4fGradientInterval* i,
fmalitabc590c02016-02-22 09:12:33 -0800274 SkScalar fx,
275 SkScalar dx,
276 bool is_vertical)
Florin Malitacf20f782017-04-07 14:56:14 -0400277 : fAdvX(is_vertical ? SK_ScalarInfinity : (i->fT1 - fx) / dx)
fmalitabc590c02016-02-22 09:12:33 -0800278 , fFirstInterval(firstInterval)
279 , fLastInterval(lastInterval)
280 , fInterval(i)
281 , fDx(dx)
282 , fIsVertical(is_vertical)
283 {
fmalita6d7e4e82016-09-20 06:55:16 -0700284 SkASSERT(fAdvX >= 0);
fmalitabc590c02016-02-22 09:12:33 -0800285 SkASSERT(firstInterval <= lastInterval);
fmalitaafac5812016-11-01 13:41:34 -0700286
287 if (tileMode != kClamp_TileMode && !is_vertical) {
Florin Malitacf20f782017-04-07 14:56:14 -0400288 const auto spanX = (lastInterval->fT1 - firstInterval->fT0) / dx;
fmalitaafac5812016-11-01 13:41:34 -0700289 SkASSERT(spanX >= 0);
290
291 // If we're in a repeating tile mode and the whole gradient is compressed into a
292 // fraction of a pixel, we just use the average color in zero-ramp mode.
293 // This also avoids cases where we make no progress due to interval advances being
294 // close to zero.
295 static constexpr SkScalar kMinSpanX = .25f;
296 if (spanX < kMinSpanX) {
297 this->init_average_props();
298 return;
299 }
300 }
301
Florin Malitacf20f782017-04-07 14:56:14 -0400302 this->compute_interval_props(fx);
fmalitabc590c02016-02-22 09:12:33 -0800303 }
304
305 SkScalar currentAdvance() const {
306 SkASSERT(fAdvX >= 0);
Florin Malitacf20f782017-04-07 14:56:14 -0400307 SkASSERT(fAdvX <= (fInterval->fT1 - fInterval->fT0) / fDx || !std::isfinite(fAdvX));
fmalitabc590c02016-02-22 09:12:33 -0800308 return fAdvX;
309 }
310
311 bool currentRampIsZero() const { return fZeroRamp; }
312 const Sk4f& currentColor() const { return fCc; }
313 const Sk4f& currentColorGrad() const { return fDcDx; }
314
315 void advance(SkScalar advX) {
316 SkASSERT(advX > 0);
317 SkASSERT(fAdvX >= 0);
318
319 if (advX >= fAdvX) {
320 advX = this->advance_interval(advX);
321 }
322 SkASSERT(advX < fAdvX);
323
324 fCc = fCc + fDcDx * Sk4f(advX);
325 fAdvX -= advX;
326 }
327
328private:
329 void compute_interval_props(SkScalar t) {
Florin Malitacf20f782017-04-07 14:56:14 -0400330 SkASSERT(in_range(t, fInterval->fT0, fInterval->fT1));
331
Florin Malitaaa0ce822017-08-28 12:50:26 -0400332 const Sk4f dc = DstTraits<dstType, premul>::load(fInterval->fCg);
333 fCc = DstTraits<dstType, premul>::load(fInterval->fCb) + dc * Sk4f(t);
Florin Malita63f717d2017-05-08 09:53:11 -0400334 fDcDx = dc * fDx;
335 fZeroRamp = fIsVertical || (dc == 0).allTrue();
fmalitabc590c02016-02-22 09:12:33 -0800336 }
337
fmalitaafac5812016-11-01 13:41:34 -0700338 void init_average_props() {
339 fAdvX = SK_ScalarInfinity;
340 fZeroRamp = true;
341 fDcDx = 0;
342 fCc = Sk4f(0);
343
344 // TODO: precompute the average at interval setup time?
345 for (const auto* i = fFirstInterval; i <= fLastInterval; ++i) {
346 // Each interval contributes its average color to the total/weighted average:
347 //
Florin Malitacf20f782017-04-07 14:56:14 -0400348 // C = (c0 + c1) / 2 = (Cb + Cg * t0 + Cb + Cg * t1) / 2 = Cb + Cg *(t0 + t1) / 2
fmalitaafac5812016-11-01 13:41:34 -0700349 //
Florin Malitacf20f782017-04-07 14:56:14 -0400350 // Avg += C * (t1 - t0)
fmalitaafac5812016-11-01 13:41:34 -0700351 //
Florin Malitaaa0ce822017-08-28 12:50:26 -0400352 const auto c = DstTraits<dstType, premul>::load(i->fCb)
353 + DstTraits<dstType, premul>::load(i->fCg) * (i->fT0 + i->fT1) * 0.5f;
Florin Malitacf20f782017-04-07 14:56:14 -0400354 fCc = fCc + c * (i->fT1 - i->fT0);
fmalitaafac5812016-11-01 13:41:34 -0700355 }
356 }
357
Florin Malitada4545b2017-03-23 17:04:54 -0400358 const Sk4fGradientInterval* next_interval(const Sk4fGradientInterval* i) const {
fmalitabc590c02016-02-22 09:12:33 -0800359 SkASSERT(i >= fFirstInterval);
360 SkASSERT(i <= fLastInterval);
361 i++;
362
363 if (tileMode == kClamp_TileMode) {
364 SkASSERT(i <= fLastInterval);
365 return i;
366 }
367
368 return (i <= fLastInterval) ? i : fFirstInterval;
369 }
370
371 SkScalar advance_interval(SkScalar advX) {
372 SkASSERT(advX >= fAdvX);
373
374 do {
375 advX -= fAdvX;
376 fInterval = this->next_interval(fInterval);
Florin Malitacf20f782017-04-07 14:56:14 -0400377 fAdvX = (fInterval->fT1 - fInterval->fT0) / fDx;
fmalitabc590c02016-02-22 09:12:33 -0800378 SkASSERT(fAdvX > 0);
379 } while (advX >= fAdvX);
380
Florin Malitacf20f782017-04-07 14:56:14 -0400381 compute_interval_props(fInterval->fT0);
fmalitabc590c02016-02-22 09:12:33 -0800382
383 SkASSERT(advX >= 0);
384 return advX;
385 }
386
fmalitabc590c02016-02-22 09:12:33 -0800387 // Current interval properties.
fmalitabc590c02016-02-22 09:12:33 -0800388 Sk4f fDcDx; // dst color gradient (dc/dx)
389 Sk4f fCc; // current color, interpolated in dst
390 SkScalar fAdvX; // remaining interval advance in dst
391 bool fZeroRamp; // current interval color grad is 0
392
Florin Malitada4545b2017-03-23 17:04:54 -0400393 const Sk4fGradientInterval* fFirstInterval;
394 const Sk4fGradientInterval* fLastInterval;
395 const Sk4fGradientInterval* fInterval; // current interval
396 const SkScalar fDx; // 'dx' for consistency with other impls; actually dt/dx
397 const bool fIsVertical;
fmalitabc590c02016-02-22 09:12:33 -0800398};