blob: 9a6c671de44fb8da2ade2b2a2e53be9932bda43c [file] [log] [blame]
sugoi@google.come3b4c502013-04-05 13:47: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 "SkDither.h"
9#include "SkPerlinNoiseShader.h"
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +000010#include "SkColorFilter.h"
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +000011#include "SkReadBuffer.h"
12#include "SkWriteBuffer.h"
sugoi@google.come3b4c502013-04-05 13:47:09 +000013#include "SkShader.h"
14#include "SkUnPreMultiply.h"
15#include "SkString.h"
16
17#if SK_SUPPORT_GPU
18#include "GrContext.h"
bsalomon@google.com77af6802013-10-02 13:04:56 +000019#include "GrCoordTransform.h"
egdaniel605dd0f2014-11-12 08:35:25 -080020#include "GrInvariantOutput.h"
joshualitteb2a6762014-12-04 11:35:33 -080021#include "SkGr.h"
bsalomonc21b09e2015-08-28 18:46:56 -070022#include "effects/GrConstColorProcessor.h"
wangyix6af0c932015-07-22 10:21:17 -070023#include "gl/GrGLFragmentProcessor.h"
joshualitt30ba4362014-08-21 20:18:45 -070024#include "gl/builders/GrGLProgramBuilder.h"
sugoi@google.come3b4c502013-04-05 13:47:09 +000025#endif
26
27static const int kBlockSize = 256;
28static const int kBlockMask = kBlockSize - 1;
29static const int kPerlinNoise = 4096;
30static const int kRandMaximum = SK_MaxS32; // 2**31 - 1
31
32namespace {
33
34// noiseValue is the color component's value (or color)
35// limitValue is the maximum perlin noise array index value allowed
36// newValue is the current noise dimension (either width or height)
37inline int checkNoise(int noiseValue, int limitValue, int newValue) {
38 // If the noise value would bring us out of bounds of the current noise array while we are
39 // stiching noise tiles together, wrap the noise around the current dimension of the noise to
40 // stay within the array bounds in a continuous fashion (so that tiling lines are not visible)
41 if (noiseValue >= limitValue) {
42 noiseValue -= newValue;
43 }
sugoi@google.come3b4c502013-04-05 13:47:09 +000044 return noiseValue;
45}
46
47inline SkScalar smoothCurve(SkScalar t) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000048 static const SkScalar SK_Scalar3 = 3.0f;
sugoi@google.come3b4c502013-04-05 13:47:09 +000049
50 // returns t * t * (3 - 2 * t)
51 return SkScalarMul(SkScalarSquare(t), SK_Scalar3 - 2 * t);
52}
53
54} // end namespace
55
56struct SkPerlinNoiseShader::StitchData {
57 StitchData()
58 : fWidth(0)
59 , fWrapX(0)
60 , fHeight(0)
61 , fWrapY(0)
62 {}
63
64 bool operator==(const StitchData& other) const {
65 return fWidth == other.fWidth &&
66 fWrapX == other.fWrapX &&
67 fHeight == other.fHeight &&
68 fWrapY == other.fWrapY;
69 }
70
71 int fWidth; // How much to subtract to wrap for stitching.
72 int fWrapX; // Minimum value to wrap.
73 int fHeight;
74 int fWrapY;
75};
76
77struct SkPerlinNoiseShader::PaintingData {
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000078 PaintingData(const SkISize& tileSize, SkScalar seed,
senorblancoca6a7c22014-06-27 13:35:52 -070079 SkScalar baseFrequencyX, SkScalar baseFrequencyY,
80 const SkMatrix& matrix)
sugoi@google.come3b4c502013-04-05 13:47:09 +000081 {
reed11fa2242015-03-13 06:08:28 -070082 SkVector vec[2] = {
83 { SkScalarInvert(baseFrequencyX), SkScalarInvert(baseFrequencyY) },
84 { SkIntToScalar(tileSize.fWidth), SkIntToScalar(tileSize.fHeight) },
85 };
86 matrix.mapVectors(vec, 2);
87
88 fBaseFrequency.set(SkScalarInvert(vec[0].fX), SkScalarInvert(vec[0].fY));
89 fTileSize.set(SkScalarRoundToInt(vec[1].fX), SkScalarRoundToInt(vec[1].fY));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000090 this->init(seed);
91 if (!fTileSize.isEmpty()) {
92 this->stitch();
93 }
94
senorblancof3b50272014-06-16 10:49:58 -070095#if SK_SUPPORT_GPU
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000096 fPermutationsBitmap.setInfo(SkImageInfo::MakeA8(kBlockSize, 1));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000097 fPermutationsBitmap.setPixels(fLatticeSelector);
98
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000099 fNoiseBitmap.setInfo(SkImageInfo::MakeN32Premul(kBlockSize, 4));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000100 fNoiseBitmap.setPixels(fNoise[0][0]);
101#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000102 }
103
104 int fSeed;
105 uint8_t fLatticeSelector[kBlockSize];
106 uint16_t fNoise[4][kBlockSize][2];
107 SkPoint fGradient[4][kBlockSize];
108 SkISize fTileSize;
109 SkVector fBaseFrequency;
110 StitchData fStitchDataInit;
111
112private:
113
senorblancof3b50272014-06-16 10:49:58 -0700114#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000115 SkBitmap fPermutationsBitmap;
116 SkBitmap fNoiseBitmap;
117#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000118
119 inline int random() {
120 static const int gRandAmplitude = 16807; // 7**5; primitive root of m
121 static const int gRandQ = 127773; // m / a
122 static const int gRandR = 2836; // m % a
123
124 int result = gRandAmplitude * (fSeed % gRandQ) - gRandR * (fSeed / gRandQ);
125 if (result <= 0)
126 result += kRandMaximum;
127 fSeed = result;
128 return result;
129 }
130
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000131 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000132 void init(SkScalar seed)
133 {
134 static const SkScalar gInvBlockSizef = SkScalarInvert(SkIntToScalar(kBlockSize));
135
senorblanco@chromium.org857e3202014-01-09 17:41:42 +0000136 // According to the SVG spec, we must truncate (not round) the seed value.
137 fSeed = SkScalarTruncToInt(seed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000138 // The seed value clamp to the range [1, kRandMaximum - 1].
sugoi@google.come3b4c502013-04-05 13:47:09 +0000139 if (fSeed <= 0) {
140 fSeed = -(fSeed % (kRandMaximum - 1)) + 1;
141 }
142 if (fSeed > kRandMaximum - 1) {
143 fSeed = kRandMaximum - 1;
144 }
145 for (int channel = 0; channel < 4; ++channel) {
146 for (int i = 0; i < kBlockSize; ++i) {
147 fLatticeSelector[i] = i;
148 fNoise[channel][i][0] = (random() % (2 * kBlockSize));
149 fNoise[channel][i][1] = (random() % (2 * kBlockSize));
150 }
151 }
152 for (int i = kBlockSize - 1; i > 0; --i) {
153 int k = fLatticeSelector[i];
154 int j = random() % kBlockSize;
155 SkASSERT(j >= 0);
156 SkASSERT(j < kBlockSize);
157 fLatticeSelector[i] = fLatticeSelector[j];
158 fLatticeSelector[j] = k;
159 }
160
161 // Perform the permutations now
162 {
163 // Copy noise data
164 uint16_t noise[4][kBlockSize][2];
165 for (int i = 0; i < kBlockSize; ++i) {
166 for (int channel = 0; channel < 4; ++channel) {
167 for (int j = 0; j < 2; ++j) {
168 noise[channel][i][j] = fNoise[channel][i][j];
169 }
170 }
171 }
172 // Do permutations on noise data
173 for (int i = 0; i < kBlockSize; ++i) {
174 for (int channel = 0; channel < 4; ++channel) {
175 for (int j = 0; j < 2; ++j) {
176 fNoise[channel][i][j] = noise[channel][fLatticeSelector[i]][j];
177 }
178 }
179 }
180 }
181
182 // Half of the largest possible value for 16 bit unsigned int
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000183 static const SkScalar gHalfMax16bits = 32767.5f;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000184
185 // Compute gradients from permutated noise data
186 for (int channel = 0; channel < 4; ++channel) {
187 for (int i = 0; i < kBlockSize; ++i) {
188 fGradient[channel][i] = SkPoint::Make(
189 SkScalarMul(SkIntToScalar(fNoise[channel][i][0] - kBlockSize),
190 gInvBlockSizef),
skia.committer@gmail.comcff02432013-04-06 07:01:10 +0000191 SkScalarMul(SkIntToScalar(fNoise[channel][i][1] - kBlockSize),
sugoi@google.come3b4c502013-04-05 13:47:09 +0000192 gInvBlockSizef));
193 fGradient[channel][i].normalize();
194 // Put the normalized gradient back into the noise data
195 fNoise[channel][i][0] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000196 fGradient[channel][i].fX + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000197 fNoise[channel][i][1] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000198 fGradient[channel][i].fY + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000199 }
200 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000201 }
202
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000203 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000204 void stitch() {
205 SkScalar tileWidth = SkIntToScalar(fTileSize.width());
206 SkScalar tileHeight = SkIntToScalar(fTileSize.height());
207 SkASSERT(tileWidth > 0 && tileHeight > 0);
208 // When stitching tiled turbulence, the frequencies must be adjusted
209 // so that the tile borders will be continuous.
210 if (fBaseFrequency.fX) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000211 SkScalar lowFrequencx =
212 SkScalarFloorToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
213 SkScalar highFrequencx =
214 SkScalarCeilToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000215 // BaseFrequency should be non-negative according to the standard.
reed80ea19c2015-05-12 10:37:34 -0700216 if (fBaseFrequency.fX / lowFrequencx < highFrequencx / fBaseFrequency.fX) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000217 fBaseFrequency.fX = lowFrequencx;
218 } else {
219 fBaseFrequency.fX = highFrequencx;
220 }
221 }
222 if (fBaseFrequency.fY) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000223 SkScalar lowFrequency =
224 SkScalarFloorToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
225 SkScalar highFrequency =
226 SkScalarCeilToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
reed80ea19c2015-05-12 10:37:34 -0700227 if (fBaseFrequency.fY / lowFrequency < highFrequency / fBaseFrequency.fY) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000228 fBaseFrequency.fY = lowFrequency;
229 } else {
230 fBaseFrequency.fY = highFrequency;
231 }
232 }
233 // Set up TurbulenceInitial stitch values.
234 fStitchDataInit.fWidth =
reed@google.com8015cdd2013-12-18 15:49:32 +0000235 SkScalarRoundToInt(tileWidth * fBaseFrequency.fX);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000236 fStitchDataInit.fWrapX = kPerlinNoise + fStitchDataInit.fWidth;
237 fStitchDataInit.fHeight =
reed@google.com8015cdd2013-12-18 15:49:32 +0000238 SkScalarRoundToInt(tileHeight * fBaseFrequency.fY);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000239 fStitchDataInit.fWrapY = kPerlinNoise + fStitchDataInit.fHeight;
240 }
241
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000242public:
sugoi@google.come3b4c502013-04-05 13:47:09 +0000243
senorblancof3b50272014-06-16 10:49:58 -0700244#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000245 const SkBitmap& getPermutationsBitmap() const { return fPermutationsBitmap; }
246
247 const SkBitmap& getNoiseBitmap() const { return fNoiseBitmap; }
248#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000249};
250
251SkShader* SkPerlinNoiseShader::CreateFractalNoise(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
252 int numOctaves, SkScalar seed,
253 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700254 return new SkPerlinNoiseShader(kFractalNoise_Type, baseFrequencyX, baseFrequencyY, numOctaves,
255 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000256}
257
commit-bot@chromium.org9fbbcca2014-04-01 16:09:37 +0000258SkShader* SkPerlinNoiseShader::CreateTurbulence(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000259 int numOctaves, SkScalar seed,
260 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700261 return new SkPerlinNoiseShader(kTurbulence_Type, baseFrequencyX, baseFrequencyY, numOctaves,
262 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000263}
264
265SkPerlinNoiseShader::SkPerlinNoiseShader(SkPerlinNoiseShader::Type type,
266 SkScalar baseFrequencyX,
267 SkScalar baseFrequencyY,
268 int numOctaves,
269 SkScalar seed,
270 const SkISize* tileSize)
271 : fType(type)
272 , fBaseFrequencyX(baseFrequencyX)
273 , fBaseFrequencyY(baseFrequencyY)
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +0000274 , fNumOctaves(numOctaves > 255 ? 255 : numOctaves/*[0,255] octaves allowed*/)
sugoi@google.come3b4c502013-04-05 13:47:09 +0000275 , fSeed(seed)
halcanary96fcdcc2015-08-27 07:41:13 -0700276 , fTileSize(nullptr == tileSize ? SkISize::Make(0, 0) : *tileSize)
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000277 , fStitchTiles(!fTileSize.isEmpty())
sugoi@google.come3b4c502013-04-05 13:47:09 +0000278{
279 SkASSERT(numOctaves >= 0 && numOctaves < 256);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000280}
281
sugoi@google.come3b4c502013-04-05 13:47:09 +0000282SkPerlinNoiseShader::~SkPerlinNoiseShader() {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000283}
284
reed9fa60da2014-08-21 07:59:51 -0700285SkFlattenable* SkPerlinNoiseShader::CreateProc(SkReadBuffer& buffer) {
286 Type type = (Type)buffer.readInt();
287 SkScalar freqX = buffer.readScalar();
288 SkScalar freqY = buffer.readScalar();
289 int octaves = buffer.readInt();
290 SkScalar seed = buffer.readScalar();
291 SkISize tileSize;
292 tileSize.fWidth = buffer.readInt();
293 tileSize.fHeight = buffer.readInt();
294
295 switch (type) {
296 case kFractalNoise_Type:
297 return SkPerlinNoiseShader::CreateFractalNoise(freqX, freqY, octaves, seed, &tileSize);
298 case kTurbulence_Type:
299 return SkPerlinNoiseShader::CreateTubulence(freqX, freqY, octaves, seed, &tileSize);
300 default:
halcanary96fcdcc2015-08-27 07:41:13 -0700301 return nullptr;
reed9fa60da2014-08-21 07:59:51 -0700302 }
303}
304
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000305void SkPerlinNoiseShader::flatten(SkWriteBuffer& buffer) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000306 buffer.writeInt((int) fType);
307 buffer.writeScalar(fBaseFrequencyX);
308 buffer.writeScalar(fBaseFrequencyY);
309 buffer.writeInt(fNumOctaves);
310 buffer.writeScalar(fSeed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000311 buffer.writeInt(fTileSize.fWidth);
312 buffer.writeInt(fTileSize.fHeight);
313}
314
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000315SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::noise2D(
senorblancoca6a7c22014-06-27 13:35:52 -0700316 int channel, const StitchData& stitchData, const SkPoint& noiseVector) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000317 struct Noise {
318 int noisePositionIntegerValue;
senorblancoce6a3542014-06-12 11:24:19 -0700319 int nextNoisePositionIntegerValue;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000320 SkScalar noisePositionFractionValue;
321 Noise(SkScalar component)
322 {
323 SkScalar position = component + kPerlinNoise;
324 noisePositionIntegerValue = SkScalarFloorToInt(position);
325 noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue);
senorblancoce6a3542014-06-12 11:24:19 -0700326 nextNoisePositionIntegerValue = noisePositionIntegerValue + 1;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000327 }
328 };
329 Noise noiseX(noiseVector.x());
330 Noise noiseY(noiseVector.y());
331 SkScalar u, v;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000332 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000333 // If stitching, adjust lattice points accordingly.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000334 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000335 noiseX.noisePositionIntegerValue =
336 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
337 noiseY.noisePositionIntegerValue =
338 checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
senorblancoce6a3542014-06-12 11:24:19 -0700339 noiseX.nextNoisePositionIntegerValue =
340 checkNoise(noiseX.nextNoisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
341 noiseY.nextNoisePositionIntegerValue =
342 checkNoise(noiseY.nextNoisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000343 }
344 noiseX.noisePositionIntegerValue &= kBlockMask;
345 noiseY.noisePositionIntegerValue &= kBlockMask;
senorblancoce6a3542014-06-12 11:24:19 -0700346 noiseX.nextNoisePositionIntegerValue &= kBlockMask;
347 noiseY.nextNoisePositionIntegerValue &= kBlockMask;
348 int i =
senorblancoca6a7c22014-06-27 13:35:52 -0700349 fPaintingData->fLatticeSelector[noiseX.noisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700350 int j =
senorblancoca6a7c22014-06-27 13:35:52 -0700351 fPaintingData->fLatticeSelector[noiseX.nextNoisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700352 int b00 = (i + noiseY.noisePositionIntegerValue) & kBlockMask;
353 int b10 = (j + noiseY.noisePositionIntegerValue) & kBlockMask;
354 int b01 = (i + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
355 int b11 = (j + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000356 SkScalar sx = smoothCurve(noiseX.noisePositionFractionValue);
357 SkScalar sy = smoothCurve(noiseY.noisePositionFractionValue);
358 // This is taken 1:1 from SVG spec: http://www.w3.org/TR/SVG11/filters.html#feTurbulenceElement
359 SkPoint fractionValue = SkPoint::Make(noiseX.noisePositionFractionValue,
360 noiseY.noisePositionFractionValue); // Offset (0,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700361 u = fPaintingData->fGradient[channel][b00].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000362 fractionValue.fX -= SK_Scalar1; // Offset (-1,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700363 v = fPaintingData->fGradient[channel][b10].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000364 SkScalar a = SkScalarInterp(u, v, sx);
365 fractionValue.fY -= SK_Scalar1; // Offset (-1,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700366 v = fPaintingData->fGradient[channel][b11].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000367 fractionValue.fX = noiseX.noisePositionFractionValue; // Offset (0,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700368 u = fPaintingData->fGradient[channel][b01].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000369 SkScalar b = SkScalarInterp(u, v, sx);
370 return SkScalarInterp(a, b, sy);
371}
372
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000373SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::calculateTurbulenceValueForPoint(
senorblancoca6a7c22014-06-27 13:35:52 -0700374 int channel, StitchData& stitchData, const SkPoint& point) const {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000375 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
376 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000377 // Set up TurbulenceInitial stitch values.
senorblancoca6a7c22014-06-27 13:35:52 -0700378 stitchData = fPaintingData->fStitchDataInit;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000379 }
380 SkScalar turbulenceFunctionResult = 0;
senorblancoca6a7c22014-06-27 13:35:52 -0700381 SkPoint noiseVector(SkPoint::Make(SkScalarMul(point.x(), fPaintingData->fBaseFrequency.fX),
382 SkScalarMul(point.y(), fPaintingData->fBaseFrequency.fY)));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000383 SkScalar ratio = SK_Scalar1;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000384 for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) {
senorblancoca6a7c22014-06-27 13:35:52 -0700385 SkScalar noise = noise2D(channel, stitchData, noiseVector);
reed80ea19c2015-05-12 10:37:34 -0700386 SkScalar numer = (perlinNoiseShader.fType == kFractalNoise_Type) ?
387 noise : SkScalarAbs(noise);
388 turbulenceFunctionResult += numer / ratio;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000389 noiseVector.fX *= 2;
390 noiseVector.fY *= 2;
391 ratio *= 2;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000392 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000393 // Update stitch values
394 stitchData.fWidth *= 2;
395 stitchData.fWrapX = stitchData.fWidth + kPerlinNoise;
396 stitchData.fHeight *= 2;
397 stitchData.fWrapY = stitchData.fHeight + kPerlinNoise;
398 }
399 }
400
401 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
402 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000403 if (perlinNoiseShader.fType == kFractalNoise_Type) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000404 turbulenceFunctionResult =
405 SkScalarMul(turbulenceFunctionResult, SK_ScalarHalf) + SK_ScalarHalf;
406 }
407
408 if (channel == 3) { // Scale alpha by paint value
reed80ea19c2015-05-12 10:37:34 -0700409 turbulenceFunctionResult *= SkIntToScalar(getPaintAlpha()) / 255;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000410 }
411
412 // Clamp result
413 return SkScalarPin(turbulenceFunctionResult, 0, SK_Scalar1);
414}
415
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000416SkPMColor SkPerlinNoiseShader::PerlinNoiseShaderContext::shade(
417 const SkPoint& point, StitchData& stitchData) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000418 SkPoint newPoint;
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000419 fMatrix.mapPoints(&newPoint, &point, 1);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000420 newPoint.fX = SkScalarRoundToScalar(newPoint.fX);
421 newPoint.fY = SkScalarRoundToScalar(newPoint.fY);
422
423 U8CPU rgba[4];
424 for (int channel = 3; channel >= 0; --channel) {
425 rgba[channel] = SkScalarFloorToInt(255 *
senorblancoca6a7c22014-06-27 13:35:52 -0700426 calculateTurbulenceValueForPoint(channel, stitchData, newPoint));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000427 }
428 return SkPreMultiplyARGB(rgba[3], rgba[0], rgba[1], rgba[2]);
429}
430
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000431SkShader::Context* SkPerlinNoiseShader::onCreateContext(const ContextRec& rec,
432 void* storage) const {
halcanary385fe4d2015-08-26 13:07:48 -0700433 return new (storage) PerlinNoiseShaderContext(*this, rec);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000434}
435
436size_t SkPerlinNoiseShader::contextSize() const {
437 return sizeof(PerlinNoiseShaderContext);
438}
439
440SkPerlinNoiseShader::PerlinNoiseShaderContext::PerlinNoiseShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000441 const SkPerlinNoiseShader& shader, const ContextRec& rec)
442 : INHERITED(shader, rec)
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000443{
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000444 SkMatrix newMatrix = *rec.fMatrix;
reed@google.comb67b8e62014-05-12 18:12:24 +0000445 newMatrix.preConcat(shader.getLocalMatrix());
446 if (rec.fLocalMatrix) {
447 newMatrix.preConcat(*rec.fLocalMatrix);
448 }
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000449 // This (1,1) translation is due to WebKit's 1 based coordinates for the noise
450 // (as opposed to 0 based, usually). The same adjustment is in the setData() function.
senorblancoca6a7c22014-06-27 13:35:52 -0700451 fMatrix.setTranslate(-newMatrix.getTranslateX() + SK_Scalar1, -newMatrix.getTranslateY() + SK_Scalar1);
halcanary385fe4d2015-08-26 13:07:48 -0700452 fPaintingData = new PaintingData(shader.fTileSize, shader.fSeed, shader.fBaseFrequencyX,
453 shader.fBaseFrequencyY, newMatrix);
senorblancoca6a7c22014-06-27 13:35:52 -0700454}
455
halcanary385fe4d2015-08-26 13:07:48 -0700456SkPerlinNoiseShader::PerlinNoiseShaderContext::~PerlinNoiseShaderContext() { delete fPaintingData; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000457
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000458void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan(
459 int x, int y, SkPMColor result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000460 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
461 StitchData stitchData;
462 for (int i = 0; i < count; ++i) {
463 result[i] = shade(point, stitchData);
464 point.fX += SK_Scalar1;
465 }
466}
467
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000468void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan16(
469 int x, int y, uint16_t result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000470 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
471 StitchData stitchData;
472 DITHER_565_SCAN(y);
473 for (int i = 0; i < count; ++i) {
474 unsigned dither = DITHER_VALUE(x);
475 result[i] = SkDitherRGB32To565(shade(point, stitchData), dither);
476 DITHER_INC_X(x);
477 point.fX += SK_Scalar1;
478 }
479}
480
481/////////////////////////////////////////////////////////////////////
482
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000483#if SK_SUPPORT_GPU
sugoi@google.come3b4c502013-04-05 13:47:09 +0000484
joshualittb0a8a372014-09-23 09:50:21 -0700485class GrGLPerlinNoise : public GrGLFragmentProcessor {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000486public:
joshualitteb2a6762014-12-04 11:35:33 -0800487 GrGLPerlinNoise(const GrProcessor&);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000488 virtual ~GrGLPerlinNoise() {}
sugoi@google.come3b4c502013-04-05 13:47:09 +0000489
wangyix7c157a92015-07-22 15:08:53 -0700490 virtual void emitCode(EmitArgs&) override;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000491
jvanverthcfc18862015-04-28 08:48:20 -0700492 static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder* b);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000493
wangyixb1daa862015-08-18 11:29:31 -0700494protected:
495 void onSetData(const GrGLProgramDataManager&, const GrProcessor&) override;
496
sugoi@google.com4775cba2013-04-17 13:46:56 +0000497private:
sugoi@google.com4775cba2013-04-17 13:46:56 +0000498
kkinnunen7510b222014-07-30 00:04:16 -0700499 GrGLProgramDataManager::UniformHandle fStitchDataUni;
500 SkPerlinNoiseShader::Type fType;
501 bool fStitchTiles;
502 int fNumOctaves;
503 GrGLProgramDataManager::UniformHandle fBaseFrequencyUni;
senorblancof3b50272014-06-16 10:49:58 -0700504
505private:
joshualittb0a8a372014-09-23 09:50:21 -0700506 typedef GrGLFragmentProcessor INHERITED;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000507};
508
509/////////////////////////////////////////////////////////////////////
510
joshualittb0a8a372014-09-23 09:50:21 -0700511class GrPerlinNoiseEffect : public GrFragmentProcessor {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000512public:
joshualitt9cc17752015-07-09 06:28:14 -0700513 static GrFragmentProcessor* Create(GrProcessorDataManager* procDataManager,
joshualittb2456052015-07-08 09:36:59 -0700514 SkPerlinNoiseShader::Type type,
joshualittb0a8a372014-09-23 09:50:21 -0700515 int numOctaves, bool stitchTiles,
516 SkPerlinNoiseShader::PaintingData* paintingData,
517 GrTexture* permutationsTexture, GrTexture* noiseTexture,
bsalomonc21b09e2015-08-28 18:46:56 -0700518 const SkMatrix& matrix) {
halcanary385fe4d2015-08-26 13:07:48 -0700519 return new GrPerlinNoiseEffect(procDataManager, type, numOctaves, stitchTiles, paintingData,
bsalomonc21b09e2015-08-28 18:46:56 -0700520 permutationsTexture, noiseTexture, matrix);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000521 }
522
halcanary385fe4d2015-08-26 13:07:48 -0700523 virtual ~GrPerlinNoiseEffect() { delete fPaintingData; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000524
mtklein36352bf2015-03-25 18:17:31 -0700525 const char* name() const override { return "PerlinNoise"; }
joshualitteb2a6762014-12-04 11:35:33 -0800526
senorblancoca6a7c22014-06-27 13:35:52 -0700527 const SkPerlinNoiseShader::StitchData& stitchData() const { return fPaintingData->fStitchDataInit; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000528
senorblancof3b50272014-06-16 10:49:58 -0700529 SkPerlinNoiseShader::Type type() const { return fType; }
530 bool stitchTiles() const { return fStitchTiles; }
senorblancoca6a7c22014-06-27 13:35:52 -0700531 const SkVector& baseFrequency() const { return fPaintingData->fBaseFrequency; }
senorblancof3b50272014-06-16 10:49:58 -0700532 int numOctaves() const { return fNumOctaves; }
533 const SkMatrix& matrix() const { return fCoordTransform.getMatrix(); }
senorblancof3b50272014-06-16 10:49:58 -0700534
sugoi@google.come3b4c502013-04-05 13:47:09 +0000535private:
wangyixb1daa862015-08-18 11:29:31 -0700536 GrGLFragmentProcessor* onCreateGLInstance() const override {
halcanary385fe4d2015-08-26 13:07:48 -0700537 return new GrGLPerlinNoise(*this);
wangyixb1daa862015-08-18 11:29:31 -0700538 }
539
wangyix4b3050b2015-08-04 07:59:37 -0700540 virtual void onGetGLProcessorKey(const GrGLSLCaps& caps,
541 GrProcessorKeyBuilder* b) const override {
542 GrGLPerlinNoise::GenKey(*this, caps, b);
543 }
544
mtklein36352bf2015-03-25 18:17:31 -0700545 bool onIsEqual(const GrFragmentProcessor& sBase) const override {
joshualitt49586be2014-09-16 08:21:41 -0700546 const GrPerlinNoiseEffect& s = sBase.cast<GrPerlinNoiseEffect>();
senorblancof3b50272014-06-16 10:49:58 -0700547 return fType == s.fType &&
senorblancoca6a7c22014-06-27 13:35:52 -0700548 fPaintingData->fBaseFrequency == s.fPaintingData->fBaseFrequency &&
senorblancof3b50272014-06-16 10:49:58 -0700549 fNumOctaves == s.fNumOctaves &&
550 fStitchTiles == s.fStitchTiles &&
senorblancoca6a7c22014-06-27 13:35:52 -0700551 fPaintingData->fStitchDataInit == s.fPaintingData->fStitchDataInit;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000552 }
553
mtklein36352bf2015-03-25 18:17:31 -0700554 void onComputeInvariantOutput(GrInvariantOutput* inout) const override {
egdaniel605dd0f2014-11-12 08:35:25 -0800555 inout->setToUnknown(GrInvariantOutput::kWillNot_ReadInput);
egdaniel1a8ecdf2014-10-03 06:24:12 -0700556 }
557
joshualitt9cc17752015-07-09 06:28:14 -0700558 GrPerlinNoiseEffect(GrProcessorDataManager*, SkPerlinNoiseShader::Type type,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000559 int numOctaves, bool stitchTiles,
senorblancoca6a7c22014-06-27 13:35:52 -0700560 SkPerlinNoiseShader::PaintingData* paintingData,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000561 GrTexture* permutationsTexture, GrTexture* noiseTexture,
bsalomonc21b09e2015-08-28 18:46:56 -0700562 const SkMatrix& matrix)
senorblancof3b50272014-06-16 10:49:58 -0700563 : fType(type)
senorblancof3b50272014-06-16 10:49:58 -0700564 , fNumOctaves(numOctaves)
565 , fStitchTiles(stitchTiles)
sugoi@google.com4775cba2013-04-17 13:46:56 +0000566 , fPermutationsAccess(permutationsTexture)
sugoi@google.come3b4c502013-04-05 13:47:09 +0000567 , fNoiseAccess(noiseTexture)
senorblancoca6a7c22014-06-27 13:35:52 -0700568 , fPaintingData(paintingData) {
joshualitteb2a6762014-12-04 11:35:33 -0800569 this->initClassID<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000570 this->addTextureAccess(&fPermutationsAccess);
571 this->addTextureAccess(&fNoiseAccess);
senorblancoca6a7c22014-06-27 13:35:52 -0700572 fCoordTransform.reset(kLocal_GrCoordSet, matrix);
senorblancof3b50272014-06-16 10:49:58 -0700573 this->addCoordTransform(&fCoordTransform);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000574 }
575
joshualittb0a8a372014-09-23 09:50:21 -0700576 GR_DECLARE_FRAGMENT_PROCESSOR_TEST;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000577
senorblancof3b50272014-06-16 10:49:58 -0700578 SkPerlinNoiseShader::Type fType;
579 GrCoordTransform fCoordTransform;
senorblancof3b50272014-06-16 10:49:58 -0700580 int fNumOctaves;
581 bool fStitchTiles;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000582 GrTextureAccess fPermutationsAccess;
583 GrTextureAccess fNoiseAccess;
senorblancoca6a7c22014-06-27 13:35:52 -0700584 SkPerlinNoiseShader::PaintingData *fPaintingData;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000585
sugoi@google.com4775cba2013-04-17 13:46:56 +0000586private:
joshualittb0a8a372014-09-23 09:50:21 -0700587 typedef GrFragmentProcessor INHERITED;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000588};
589
590/////////////////////////////////////////////////////////////////////
joshualittb0a8a372014-09-23 09:50:21 -0700591GR_DEFINE_FRAGMENT_PROCESSOR_TEST(GrPerlinNoiseEffect);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000592
bsalomonc21b09e2015-08-28 18:46:56 -0700593const GrFragmentProcessor* GrPerlinNoiseEffect::TestCreate(GrProcessorTestData* d) {
joshualitt0067ff52015-07-08 14:26:19 -0700594 int numOctaves = d->fRandom->nextRangeU(2, 10);
595 bool stitchTiles = d->fRandom->nextBool();
596 SkScalar seed = SkIntToScalar(d->fRandom->nextU());
597 SkISize tileSize = SkISize::Make(d->fRandom->nextRangeU(4, 4096),
598 d->fRandom->nextRangeU(4, 4096));
599 SkScalar baseFrequencyX = d->fRandom->nextRangeScalar(0.01f,
600 0.99f);
601 SkScalar baseFrequencyY = d->fRandom->nextRangeScalar(0.01f,
602 0.99f);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000603
bsalomon6d2a2032015-08-29 06:27:29 -0700604 SkAutoTUnref<SkShader> shader(d->fRandom->nextBool() ?
sugoi@google.come3b4c502013-04-05 13:47:09 +0000605 SkPerlinNoiseShader::CreateFractalNoise(baseFrequencyX, baseFrequencyY, numOctaves, seed,
halcanary96fcdcc2015-08-27 07:41:13 -0700606 stitchTiles ? &tileSize : nullptr) :
commit-bot@chromium.org9fbbcca2014-04-01 16:09:37 +0000607 SkPerlinNoiseShader::CreateTurbulence(baseFrequencyX, baseFrequencyY, numOctaves, seed,
bsalomon6d2a2032015-08-29 06:27:29 -0700608 stitchTiles ? &tileSize : nullptr));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000609
joshualitt8ca93e72015-07-08 06:51:43 -0700610 GrPaint grPaint;
bsalomonc21b09e2015-08-28 18:46:56 -0700611 return shader->asFragmentProcessor(d->fContext,
612 GrTest::TestMatrix(d->fRandom), nullptr,
613 kNone_SkFilterQuality,
614 grPaint.getProcessorDataManager());
sugoi@google.come3b4c502013-04-05 13:47:09 +0000615}
sugoi@google.com4775cba2013-04-17 13:46:56 +0000616
joshualitteb2a6762014-12-04 11:35:33 -0800617GrGLPerlinNoise::GrGLPerlinNoise(const GrProcessor& processor)
618 : fType(processor.cast<GrPerlinNoiseEffect>().type())
joshualittb0a8a372014-09-23 09:50:21 -0700619 , fStitchTiles(processor.cast<GrPerlinNoiseEffect>().stitchTiles())
620 , fNumOctaves(processor.cast<GrPerlinNoiseEffect>().numOctaves()) {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000621}
622
wangyix7c157a92015-07-22 15:08:53 -0700623void GrGLPerlinNoise::emitCode(EmitArgs& args) {
624 GrGLFragmentBuilder* fsBuilder = args.fBuilder->getFragmentShaderBuilder();
625 SkString vCoords = fsBuilder->ensureFSCoords2D(args.fCoords, 0);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000626
wangyix7c157a92015-07-22 15:08:53 -0700627 fBaseFrequencyUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
bsalomon422f56f2014-12-09 10:18:12 -0800628 kVec2f_GrSLType, kDefault_GrSLPrecision,
629 "baseFrequency");
wangyix7c157a92015-07-22 15:08:53 -0700630 const char* baseFrequencyUni = args.fBuilder->getUniformCStr(fBaseFrequencyUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000631
halcanary96fcdcc2015-08-27 07:41:13 -0700632 const char* stitchDataUni = nullptr;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000633 if (fStitchTiles) {
wangyix7c157a92015-07-22 15:08:53 -0700634 fStitchDataUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
bsalomon422f56f2014-12-09 10:18:12 -0800635 kVec2f_GrSLType, kDefault_GrSLPrecision,
636 "stitchData");
wangyix7c157a92015-07-22 15:08:53 -0700637 stitchDataUni = args.fBuilder->getUniformCStr(fStitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000638 }
639
sugoi@google.comd537af52013-06-10 13:59:25 +0000640 // There are 4 lines, so the center of each line is 1/8, 3/8, 5/8 and 7/8
641 const char* chanCoordR = "0.125";
642 const char* chanCoordG = "0.375";
643 const char* chanCoordB = "0.625";
644 const char* chanCoordA = "0.875";
645 const char* chanCoord = "chanCoord";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000646 const char* stitchData = "stitchData";
647 const char* ratio = "ratio";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000648 const char* noiseVec = "noiseVec";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000649 const char* noiseSmooth = "noiseSmooth";
senorblancoce6a3542014-06-12 11:24:19 -0700650 const char* floorVal = "floorVal";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000651 const char* fractVal = "fractVal";
652 const char* uv = "uv";
653 const char* ab = "ab";
654 const char* latticeIdx = "latticeIdx";
senorblancoce6a3542014-06-12 11:24:19 -0700655 const char* bcoords = "bcoords";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000656 const char* lattice = "lattice";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000657 const char* inc8bit = "0.00390625"; // 1.0 / 256.0
658 // This is the math to convert the two 16bit integer packed into rgba 8 bit input into a
659 // [-1,1] vector and perform a dot product between that vector and the provided vector.
660 const char* dotLattice = "dot(((%s.ga + %s.rb * vec2(%s)) * vec2(2.0) - vec2(1.0)), %s);";
661
sugoi@google.comd537af52013-06-10 13:59:25 +0000662 // Add noise function
663 static const GrGLShaderVar gPerlinNoiseArgs[] = {
664 GrGLShaderVar(chanCoord, kFloat_GrSLType),
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000665 GrGLShaderVar(noiseVec, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000666 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000667
sugoi@google.comd537af52013-06-10 13:59:25 +0000668 static const GrGLShaderVar gPerlinNoiseStitchArgs[] = {
669 GrGLShaderVar(chanCoord, kFloat_GrSLType),
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000670 GrGLShaderVar(noiseVec, kVec2f_GrSLType),
671 GrGLShaderVar(stitchData, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000672 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000673
sugoi@google.comd537af52013-06-10 13:59:25 +0000674 SkString noiseCode;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000675
senorblancoce6a3542014-06-12 11:24:19 -0700676 noiseCode.appendf("\tvec4 %s;\n", floorVal);
677 noiseCode.appendf("\t%s.xy = floor(%s);\n", floorVal, noiseVec);
678 noiseCode.appendf("\t%s.zw = %s.xy + vec2(1.0);\n", floorVal, floorVal);
679 noiseCode.appendf("\tvec2 %s = fract(%s);\n", fractVal, noiseVec);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000680
681 // smooth curve : t * t * (3 - 2 * t)
senorblancoce6a3542014-06-12 11:24:19 -0700682 noiseCode.appendf("\n\tvec2 %s = %s * %s * (vec2(3.0) - vec2(2.0) * %s);",
683 noiseSmooth, fractVal, fractVal, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000684
685 // Adjust frequencies if we're stitching tiles
686 if (fStitchTiles) {
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000687 noiseCode.appendf("\n\tif(%s.x >= %s.x) { %s.x -= %s.x; }",
senorblancoce6a3542014-06-12 11:24:19 -0700688 floorVal, stitchData, floorVal, stitchData);
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000689 noiseCode.appendf("\n\tif(%s.y >= %s.y) { %s.y -= %s.y; }",
senorblancoce6a3542014-06-12 11:24:19 -0700690 floorVal, stitchData, floorVal, stitchData);
691 noiseCode.appendf("\n\tif(%s.z >= %s.x) { %s.z -= %s.x; }",
692 floorVal, stitchData, floorVal, stitchData);
693 noiseCode.appendf("\n\tif(%s.w >= %s.y) { %s.w -= %s.y; }",
694 floorVal, stitchData, floorVal, stitchData);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000695 }
696
697 // Get texture coordinates and normalize
senorblancoce6a3542014-06-12 11:24:19 -0700698 noiseCode.appendf("\n\t%s = fract(floor(mod(%s, 256.0)) / vec4(256.0));\n",
699 floorVal, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000700
701 // Get permutation for x
702 {
703 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700704 xCoords.appendf("vec2(%s.x, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000705
sugoi@google.comd537af52013-06-10 13:59:25 +0000706 noiseCode.appendf("\n\tvec2 %s;\n\t%s.x = ", latticeIdx, latticeIdx);
wangyix7c157a92015-07-22 15:08:53 -0700707 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
708 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000709 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000710 }
711
712 // Get permutation for x + 1
713 {
714 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700715 xCoords.appendf("vec2(%s.z, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000716
sugoi@google.comd537af52013-06-10 13:59:25 +0000717 noiseCode.appendf("\n\t%s.y = ", latticeIdx);
wangyix7c157a92015-07-22 15:08:53 -0700718 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
719 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000720 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000721 }
722
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000723#if defined(SK_BUILD_FOR_ANDROID)
724 // Android rounding for Tegra devices, like, for example: Xoom (Tegra 2), Nexus 7 (Tegra 3).
725 // The issue is that colors aren't accurate enough on Tegra devices. For example, if an 8 bit
726 // value of 124 (or 0.486275 here) is entered, we can get a texture value of 123.513725
727 // (or 0.484368 here). The following rounding operation prevents these precision issues from
728 // affecting the result of the noise by making sure that we only have multiples of 1/255.
729 // (Note that 1/255 is about 0.003921569, which is the value used here).
730 noiseCode.appendf("\n\t%s = floor(%s * vec2(255.0) + vec2(0.5)) * vec2(0.003921569);",
731 latticeIdx, latticeIdx);
732#endif
733
sugoi@google.come3b4c502013-04-05 13:47:09 +0000734 // Get (x,y) coordinates with the permutated x
senorblancoce6a3542014-06-12 11:24:19 -0700735 noiseCode.appendf("\n\tvec4 %s = fract(%s.xyxy + %s.yyww);", bcoords, latticeIdx, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000736
sugoi@google.comd537af52013-06-10 13:59:25 +0000737 noiseCode.appendf("\n\n\tvec2 %s;", uv);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000738 // Compute u, at offset (0,0)
739 {
740 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700741 latticeCoords.appendf("vec2(%s.x, %s)", bcoords, chanCoord);
sugoi@google.comd537af52013-06-10 13:59:25 +0000742 noiseCode.appendf("\n\tvec4 %s = ", lattice);
wangyix7c157a92015-07-22 15:08:53 -0700743 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000744 kVec2f_GrSLType);
745 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
746 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000747 }
748
sugoi@google.comd537af52013-06-10 13:59:25 +0000749 noiseCode.appendf("\n\t%s.x -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000750 // Compute v, at offset (-1,0)
751 {
752 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700753 latticeCoords.appendf("vec2(%s.y, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000754 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700755 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000756 kVec2f_GrSLType);
757 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
758 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000759 }
760
761 // Compute 'a' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000762 noiseCode.appendf("\n\tvec2 %s;", ab);
763 noiseCode.appendf("\n\t%s.x = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000764
sugoi@google.comd537af52013-06-10 13:59:25 +0000765 noiseCode.appendf("\n\t%s.y -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000766 // Compute v, at offset (-1,-1)
767 {
768 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700769 latticeCoords.appendf("vec2(%s.w, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000770 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700771 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000772 kVec2f_GrSLType);
773 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
774 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000775 }
776
sugoi@google.comd537af52013-06-10 13:59:25 +0000777 noiseCode.appendf("\n\t%s.x += 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000778 // Compute u, at offset (0,-1)
779 {
780 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700781 latticeCoords.appendf("vec2(%s.z, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000782 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700783 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000784 kVec2f_GrSLType);
785 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
786 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000787 }
788
789 // Compute 'b' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000790 noiseCode.appendf("\n\t%s.y = mix(%s.x, %s.y, %s.x);", ab, uv, uv, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000791 // Compute the noise as a linear interpolation of 'a' and 'b'
sugoi@google.comd537af52013-06-10 13:59:25 +0000792 noiseCode.appendf("\n\treturn mix(%s.x, %s.y, %s.y);\n", ab, ab, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000793
sugoi@google.comd537af52013-06-10 13:59:25 +0000794 SkString noiseFuncName;
795 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700796 fsBuilder->emitFunction(kFloat_GrSLType,
commit-bot@chromium.org74a3a212013-08-30 19:43:59 +0000797 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseStitchArgs),
798 gPerlinNoiseStitchArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000799 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700800 fsBuilder->emitFunction(kFloat_GrSLType,
commit-bot@chromium.org74a3a212013-08-30 19:43:59 +0000801 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseArgs),
802 gPerlinNoiseArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000803 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000804
sugoi@google.comd537af52013-06-10 13:59:25 +0000805 // There are rounding errors if the floor operation is not performed here
joshualitt30ba4362014-08-21 20:18:45 -0700806 fsBuilder->codeAppendf("\n\t\tvec2 %s = floor(%s.xy) * %s;",
senorblancoca6a7c22014-06-27 13:35:52 -0700807 noiseVec, vCoords.c_str(), baseFrequencyUni);
sugoi@google.comd537af52013-06-10 13:59:25 +0000808
809 // Clear the color accumulator
wangyix7c157a92015-07-22 15:08:53 -0700810 fsBuilder->codeAppendf("\n\t\t%s = vec4(0.0);", args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000811
812 if (fStitchTiles) {
sugoi@google.comd537af52013-06-10 13:59:25 +0000813 // Set up TurbulenceInitial stitch values.
joshualitt30ba4362014-08-21 20:18:45 -0700814 fsBuilder->codeAppendf("\n\t\tvec2 %s = %s;", stitchData, stitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000815 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000816
joshualitt30ba4362014-08-21 20:18:45 -0700817 fsBuilder->codeAppendf("\n\t\tfloat %s = 1.0;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000818
819 // Loop over all octaves
joshualitt30ba4362014-08-21 20:18:45 -0700820 fsBuilder->codeAppendf("\n\t\tfor (int octave = 0; octave < %d; ++octave) {", fNumOctaves);
sugoi@google.comd537af52013-06-10 13:59:25 +0000821
wangyix7c157a92015-07-22 15:08:53 -0700822 fsBuilder->codeAppendf("\n\t\t\t%s += ", args.fOutputColor);
sugoi@google.comd537af52013-06-10 13:59:25 +0000823 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
joshualitt30ba4362014-08-21 20:18:45 -0700824 fsBuilder->codeAppend("abs(");
sugoi@google.comd537af52013-06-10 13:59:25 +0000825 }
826 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700827 fsBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000828 "vec4(\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s),"
829 "\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s))",
830 noiseFuncName.c_str(), chanCoordR, noiseVec, stitchData,
831 noiseFuncName.c_str(), chanCoordG, noiseVec, stitchData,
832 noiseFuncName.c_str(), chanCoordB, noiseVec, stitchData,
833 noiseFuncName.c_str(), chanCoordA, noiseVec, stitchData);
834 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700835 fsBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000836 "vec4(\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s),"
837 "\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s))",
838 noiseFuncName.c_str(), chanCoordR, noiseVec,
839 noiseFuncName.c_str(), chanCoordG, noiseVec,
840 noiseFuncName.c_str(), chanCoordB, noiseVec,
841 noiseFuncName.c_str(), chanCoordA, noiseVec);
842 }
843 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
joshualitt30ba4362014-08-21 20:18:45 -0700844 fsBuilder->codeAppendf(")"); // end of "abs("
sugoi@google.comd537af52013-06-10 13:59:25 +0000845 }
joshualitt30ba4362014-08-21 20:18:45 -0700846 fsBuilder->codeAppendf(" * %s;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000847
joshualitt30ba4362014-08-21 20:18:45 -0700848 fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", noiseVec);
849 fsBuilder->codeAppendf("\n\t\t\t%s *= 0.5;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000850
851 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700852 fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", stitchData);
sugoi@google.comd537af52013-06-10 13:59:25 +0000853 }
joshualitt30ba4362014-08-21 20:18:45 -0700854 fsBuilder->codeAppend("\n\t\t}"); // end of the for loop on octaves
sugoi@google.come3b4c502013-04-05 13:47:09 +0000855
856 if (fType == SkPerlinNoiseShader::kFractalNoise_Type) {
857 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
858 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
wangyix7c157a92015-07-22 15:08:53 -0700859 fsBuilder->codeAppendf("\n\t\t%s = %s * vec4(0.5) + vec4(0.5);",
860 args.fOutputColor,args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000861 }
862
sugoi@google.come3b4c502013-04-05 13:47:09 +0000863 // Clamp values
wangyix7c157a92015-07-22 15:08:53 -0700864 fsBuilder->codeAppendf("\n\t\t%s = clamp(%s, 0.0, 1.0);", args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000865
866 // Pre-multiply the result
joshualitt30ba4362014-08-21 20:18:45 -0700867 fsBuilder->codeAppendf("\n\t\t%s = vec4(%s.rgb * %s.aaa, %s.a);\n",
wangyix7c157a92015-07-22 15:08:53 -0700868 args.fOutputColor, args.fOutputColor,
869 args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000870}
871
jvanverthcfc18862015-04-28 08:48:20 -0700872void GrGLPerlinNoise::GenKey(const GrProcessor& processor, const GrGLSLCaps&,
joshualittb0a8a372014-09-23 09:50:21 -0700873 GrProcessorKeyBuilder* b) {
874 const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000875
bsalomon63e99f72014-07-21 08:03:14 -0700876 uint32_t key = turbulence.numOctaves();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000877
878 key = key << 3; // Make room for next 3 bits
879
880 switch (turbulence.type()) {
881 case SkPerlinNoiseShader::kFractalNoise_Type:
882 key |= 0x1;
883 break;
884 case SkPerlinNoiseShader::kTurbulence_Type:
885 key |= 0x2;
886 break;
887 default:
888 // leave key at 0
889 break;
890 }
891
892 if (turbulence.stitchTiles()) {
893 key |= 0x4; // Flip the 3rd bit if tile stitching is on
894 }
895
bsalomon63e99f72014-07-21 08:03:14 -0700896 b->add32(key);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000897}
898
wangyixb1daa862015-08-18 11:29:31 -0700899void GrGLPerlinNoise::onSetData(const GrGLProgramDataManager& pdman, const GrProcessor& processor) {
900 INHERITED::onSetData(pdman, processor);
senorblancof3b50272014-06-16 10:49:58 -0700901
joshualittb0a8a372014-09-23 09:50:21 -0700902 const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000903
904 const SkVector& baseFrequency = turbulence.baseFrequency();
kkinnunen7510b222014-07-30 00:04:16 -0700905 pdman.set2f(fBaseFrequencyUni, baseFrequency.fX, baseFrequency.fY);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000906
sugoi@google.com4775cba2013-04-17 13:46:56 +0000907 if (turbulence.stitchTiles()) {
908 const SkPerlinNoiseShader::StitchData& stitchData = turbulence.stitchData();
kkinnunen7510b222014-07-30 00:04:16 -0700909 pdman.set2f(fStitchDataUni, SkIntToScalar(stitchData.fWidth),
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000910 SkIntToScalar(stitchData.fHeight));
sugoi@google.com4775cba2013-04-17 13:46:56 +0000911 }
912}
913
sugoi@google.come3b4c502013-04-05 13:47:09 +0000914/////////////////////////////////////////////////////////////////////
bsalomonc21b09e2015-08-28 18:46:56 -0700915const GrFragmentProcessor* SkPerlinNoiseShader::asFragmentProcessor(
916 GrContext* context,
917 const SkMatrix& viewM,
918 const SkMatrix* externalLocalMatrix,
919 SkFilterQuality,
920 GrProcessorDataManager* procDataManager) const {
bsalomon49f085d2014-09-05 13:34:00 -0700921 SkASSERT(context);
mtklein3f3b3d02014-12-01 11:47:08 -0800922
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000923 SkMatrix localMatrix = this->getLocalMatrix();
924 if (externalLocalMatrix) {
925 localMatrix.preConcat(*externalLocalMatrix);
926 }
927
joshualitt5531d512014-12-17 15:50:11 -0800928 SkMatrix matrix = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700929 matrix.preConcat(localMatrix);
930
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000931 if (0 == fNumOctaves) {
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000932 if (kFractalNoise_Type == fType) {
bsalomonc21b09e2015-08-28 18:46:56 -0700933 // Extract the incoming alpha and emit rgba = (a/4, a/4, a/4, a/2)
934 SkAutoTUnref<const GrFragmentProcessor> inner(
935 GrConstColorProcessor::Create(0x80404040,
936 GrConstColorProcessor::kModulateRGBA_InputMode));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700937 return GrFragmentProcessor::MulOutputByInputAlpha(inner);
reedcff10b22015-03-03 06:41:45 -0800938 }
bsalomonc21b09e2015-08-28 18:46:56 -0700939 // Emit zero.
940 return GrConstColorProcessor::Create(0x0, GrConstColorProcessor::kIgnore_InputMode);
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000941 }
942
sugoi@google.come3b4c502013-04-05 13:47:09 +0000943 // Either we don't stitch tiles, either we have a valid tile size
944 SkASSERT(!fStitchTiles || !fTileSize.isEmpty());
945
joshualittb0a8a372014-09-23 09:50:21 -0700946 SkPerlinNoiseShader::PaintingData* paintingData =
halcanary385fe4d2015-08-26 13:07:48 -0700947 new PaintingData(fTileSize, fSeed, fBaseFrequencyX, fBaseFrequencyY, matrix);
bsalomonbcf0a522014-10-08 08:40:09 -0700948 SkAutoTUnref<GrTexture> permutationsTexture(
halcanary96fcdcc2015-08-27 07:41:13 -0700949 GrRefCachedBitmapTexture(context, paintingData->getPermutationsBitmap(), nullptr));
bsalomonbcf0a522014-10-08 08:40:09 -0700950 SkAutoTUnref<GrTexture> noiseTexture(
halcanary96fcdcc2015-08-27 07:41:13 -0700951 GrRefCachedBitmapTexture(context, paintingData->getNoiseBitmap(), nullptr));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000952
joshualitt5531d512014-12-17 15:50:11 -0800953 SkMatrix m = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700954 m.setTranslateX(-localMatrix.getTranslateX() + SK_Scalar1);
955 m.setTranslateY(-localMatrix.getTranslateY() + SK_Scalar1);
bsalomon49f085d2014-09-05 13:34:00 -0700956 if ((permutationsTexture) && (noiseTexture)) {
bsalomonc21b09e2015-08-28 18:46:56 -0700957 SkAutoTUnref<GrFragmentProcessor> inner(
958 GrPerlinNoiseEffect::Create(procDataManager,
959 fType,
960 fNumOctaves,
961 fStitchTiles,
962 paintingData,
963 permutationsTexture, noiseTexture,
964 m));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700965 return GrFragmentProcessor::MulOutputByInputAlpha(inner);
senorblancoca6a7c22014-06-27 13:35:52 -0700966 }
bsalomonc21b09e2015-08-28 18:46:56 -0700967 delete paintingData;
968 return nullptr;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000969}
970
971#endif
972
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +0000973#ifndef SK_IGNORE_TO_STRING
sugoi@google.come3b4c502013-04-05 13:47:09 +0000974void SkPerlinNoiseShader::toString(SkString* str) const {
975 str->append("SkPerlinNoiseShader: (");
976
977 str->append("type: ");
978 switch (fType) {
979 case kFractalNoise_Type:
980 str->append("\"fractal noise\"");
981 break;
982 case kTurbulence_Type:
983 str->append("\"turbulence\"");
984 break;
985 default:
986 str->append("\"unknown\"");
987 break;
988 }
989 str->append(" base frequency: (");
990 str->appendScalar(fBaseFrequencyX);
991 str->append(", ");
992 str->appendScalar(fBaseFrequencyY);
993 str->append(") number of octaves: ");
994 str->appendS32(fNumOctaves);
995 str->append(" seed: ");
996 str->appendScalar(fSeed);
997 str->append(" stitch tiles: ");
998 str->append(fStitchTiles ? "true " : "false ");
999
1000 this->INHERITED::toString(str);
1001
1002 str->append(")");
1003}
1004#endif