blob: 0c455693c3a3f3b5a8385544de2c06f5171667fc [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"
egdaniel018fb622015-10-28 07:26:40 -070025#include "glsl/GrGLSLProgramDataManager.h"
sugoi@google.come3b4c502013-04-05 13:47:09 +000026#endif
27
28static const int kBlockSize = 256;
29static const int kBlockMask = kBlockSize - 1;
30static const int kPerlinNoise = 4096;
31static const int kRandMaximum = SK_MaxS32; // 2**31 - 1
32
33namespace {
34
35// noiseValue is the color component's value (or color)
36// limitValue is the maximum perlin noise array index value allowed
37// newValue is the current noise dimension (either width or height)
38inline int checkNoise(int noiseValue, int limitValue, int newValue) {
39 // If the noise value would bring us out of bounds of the current noise array while we are
40 // stiching noise tiles together, wrap the noise around the current dimension of the noise to
41 // stay within the array bounds in a continuous fashion (so that tiling lines are not visible)
42 if (noiseValue >= limitValue) {
43 noiseValue -= newValue;
44 }
sugoi@google.come3b4c502013-04-05 13:47:09 +000045 return noiseValue;
46}
47
48inline SkScalar smoothCurve(SkScalar t) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +000049 static const SkScalar SK_Scalar3 = 3.0f;
sugoi@google.come3b4c502013-04-05 13:47:09 +000050
51 // returns t * t * (3 - 2 * t)
52 return SkScalarMul(SkScalarSquare(t), SK_Scalar3 - 2 * t);
53}
54
55} // end namespace
56
57struct SkPerlinNoiseShader::StitchData {
58 StitchData()
59 : fWidth(0)
60 , fWrapX(0)
61 , fHeight(0)
62 , fWrapY(0)
63 {}
64
65 bool operator==(const StitchData& other) const {
66 return fWidth == other.fWidth &&
67 fWrapX == other.fWrapX &&
68 fHeight == other.fHeight &&
69 fWrapY == other.fWrapY;
70 }
71
72 int fWidth; // How much to subtract to wrap for stitching.
73 int fWrapX; // Minimum value to wrap.
74 int fHeight;
75 int fWrapY;
76};
77
78struct SkPerlinNoiseShader::PaintingData {
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000079 PaintingData(const SkISize& tileSize, SkScalar seed,
senorblancoca6a7c22014-06-27 13:35:52 -070080 SkScalar baseFrequencyX, SkScalar baseFrequencyY,
81 const SkMatrix& matrix)
sugoi@google.come3b4c502013-04-05 13:47:09 +000082 {
reed11fa2242015-03-13 06:08:28 -070083 SkVector vec[2] = {
84 { SkScalarInvert(baseFrequencyX), SkScalarInvert(baseFrequencyY) },
85 { SkIntToScalar(tileSize.fWidth), SkIntToScalar(tileSize.fHeight) },
86 };
87 matrix.mapVectors(vec, 2);
88
89 fBaseFrequency.set(SkScalarInvert(vec[0].fX), SkScalarInvert(vec[0].fY));
90 fTileSize.set(SkScalarRoundToInt(vec[1].fX), SkScalarRoundToInt(vec[1].fY));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000091 this->init(seed);
92 if (!fTileSize.isEmpty()) {
93 this->stitch();
94 }
95
senorblancof3b50272014-06-16 10:49:58 -070096#if SK_SUPPORT_GPU
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +000097 fPermutationsBitmap.setInfo(SkImageInfo::MakeA8(kBlockSize, 1));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +000098 fPermutationsBitmap.setPixels(fLatticeSelector);
99
commit-bot@chromium.orga3264e52014-05-30 13:26:10 +0000100 fNoiseBitmap.setInfo(SkImageInfo::MakeN32Premul(kBlockSize, 4));
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000101 fNoiseBitmap.setPixels(fNoise[0][0]);
102#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000103 }
104
105 int fSeed;
106 uint8_t fLatticeSelector[kBlockSize];
107 uint16_t fNoise[4][kBlockSize][2];
108 SkPoint fGradient[4][kBlockSize];
109 SkISize fTileSize;
110 SkVector fBaseFrequency;
111 StitchData fStitchDataInit;
112
113private:
114
senorblancof3b50272014-06-16 10:49:58 -0700115#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000116 SkBitmap fPermutationsBitmap;
117 SkBitmap fNoiseBitmap;
118#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000119
120 inline int random() {
121 static const int gRandAmplitude = 16807; // 7**5; primitive root of m
122 static const int gRandQ = 127773; // m / a
123 static const int gRandR = 2836; // m % a
124
125 int result = gRandAmplitude * (fSeed % gRandQ) - gRandR * (fSeed / gRandQ);
126 if (result <= 0)
127 result += kRandMaximum;
128 fSeed = result;
129 return result;
130 }
131
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000132 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000133 void init(SkScalar seed)
134 {
135 static const SkScalar gInvBlockSizef = SkScalarInvert(SkIntToScalar(kBlockSize));
136
senorblanco@chromium.org857e3202014-01-09 17:41:42 +0000137 // According to the SVG spec, we must truncate (not round) the seed value.
138 fSeed = SkScalarTruncToInt(seed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000139 // The seed value clamp to the range [1, kRandMaximum - 1].
sugoi@google.come3b4c502013-04-05 13:47:09 +0000140 if (fSeed <= 0) {
141 fSeed = -(fSeed % (kRandMaximum - 1)) + 1;
142 }
143 if (fSeed > kRandMaximum - 1) {
144 fSeed = kRandMaximum - 1;
145 }
146 for (int channel = 0; channel < 4; ++channel) {
147 for (int i = 0; i < kBlockSize; ++i) {
148 fLatticeSelector[i] = i;
149 fNoise[channel][i][0] = (random() % (2 * kBlockSize));
150 fNoise[channel][i][1] = (random() % (2 * kBlockSize));
151 }
152 }
153 for (int i = kBlockSize - 1; i > 0; --i) {
154 int k = fLatticeSelector[i];
155 int j = random() % kBlockSize;
156 SkASSERT(j >= 0);
157 SkASSERT(j < kBlockSize);
158 fLatticeSelector[i] = fLatticeSelector[j];
159 fLatticeSelector[j] = k;
160 }
161
162 // Perform the permutations now
163 {
164 // Copy noise data
165 uint16_t noise[4][kBlockSize][2];
166 for (int i = 0; i < kBlockSize; ++i) {
167 for (int channel = 0; channel < 4; ++channel) {
168 for (int j = 0; j < 2; ++j) {
169 noise[channel][i][j] = fNoise[channel][i][j];
170 }
171 }
172 }
173 // Do permutations on noise data
174 for (int i = 0; i < kBlockSize; ++i) {
175 for (int channel = 0; channel < 4; ++channel) {
176 for (int j = 0; j < 2; ++j) {
177 fNoise[channel][i][j] = noise[channel][fLatticeSelector[i]][j];
178 }
179 }
180 }
181 }
182
183 // Half of the largest possible value for 16 bit unsigned int
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000184 static const SkScalar gHalfMax16bits = 32767.5f;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000185
186 // Compute gradients from permutated noise data
187 for (int channel = 0; channel < 4; ++channel) {
188 for (int i = 0; i < kBlockSize; ++i) {
189 fGradient[channel][i] = SkPoint::Make(
190 SkScalarMul(SkIntToScalar(fNoise[channel][i][0] - kBlockSize),
191 gInvBlockSizef),
skia.committer@gmail.comcff02432013-04-06 07:01:10 +0000192 SkScalarMul(SkIntToScalar(fNoise[channel][i][1] - kBlockSize),
sugoi@google.come3b4c502013-04-05 13:47:09 +0000193 gInvBlockSizef));
194 fGradient[channel][i].normalize();
195 // Put the normalized gradient back into the noise data
196 fNoise[channel][i][0] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000197 fGradient[channel][i].fX + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000198 fNoise[channel][i][1] = SkScalarRoundToInt(SkScalarMul(
sugoi@google.comd537af52013-06-10 13:59:25 +0000199 fGradient[channel][i].fY + SK_Scalar1, gHalfMax16bits));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000200 }
201 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000202 }
203
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000204 // Only called once. Could be part of the constructor.
sugoi@google.come3b4c502013-04-05 13:47:09 +0000205 void stitch() {
206 SkScalar tileWidth = SkIntToScalar(fTileSize.width());
207 SkScalar tileHeight = SkIntToScalar(fTileSize.height());
208 SkASSERT(tileWidth > 0 && tileHeight > 0);
209 // When stitching tiled turbulence, the frequencies must be adjusted
210 // so that the tile borders will be continuous.
211 if (fBaseFrequency.fX) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000212 SkScalar lowFrequencx =
213 SkScalarFloorToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
214 SkScalar highFrequencx =
215 SkScalarCeilToScalar(tileWidth * fBaseFrequency.fX) / tileWidth;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000216 // BaseFrequency should be non-negative according to the standard.
reed80ea19c2015-05-12 10:37:34 -0700217 if (fBaseFrequency.fX / lowFrequencx < highFrequencx / fBaseFrequency.fX) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000218 fBaseFrequency.fX = lowFrequencx;
219 } else {
220 fBaseFrequency.fX = highFrequencx;
221 }
222 }
223 if (fBaseFrequency.fY) {
reed@google.com8015cdd2013-12-18 15:49:32 +0000224 SkScalar lowFrequency =
225 SkScalarFloorToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
226 SkScalar highFrequency =
227 SkScalarCeilToScalar(tileHeight * fBaseFrequency.fY) / tileHeight;
reed80ea19c2015-05-12 10:37:34 -0700228 if (fBaseFrequency.fY / lowFrequency < highFrequency / fBaseFrequency.fY) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000229 fBaseFrequency.fY = lowFrequency;
230 } else {
231 fBaseFrequency.fY = highFrequency;
232 }
233 }
234 // Set up TurbulenceInitial stitch values.
235 fStitchDataInit.fWidth =
reed@google.com8015cdd2013-12-18 15:49:32 +0000236 SkScalarRoundToInt(tileWidth * fBaseFrequency.fX);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000237 fStitchDataInit.fWrapX = kPerlinNoise + fStitchDataInit.fWidth;
238 fStitchDataInit.fHeight =
reed@google.com8015cdd2013-12-18 15:49:32 +0000239 SkScalarRoundToInt(tileHeight * fBaseFrequency.fY);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000240 fStitchDataInit.fWrapY = kPerlinNoise + fStitchDataInit.fHeight;
241 }
242
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000243public:
sugoi@google.come3b4c502013-04-05 13:47:09 +0000244
senorblancof3b50272014-06-16 10:49:58 -0700245#if SK_SUPPORT_GPU
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000246 const SkBitmap& getPermutationsBitmap() const { return fPermutationsBitmap; }
247
248 const SkBitmap& getNoiseBitmap() const { return fNoiseBitmap; }
249#endif
sugoi@google.come3b4c502013-04-05 13:47:09 +0000250};
251
252SkShader* SkPerlinNoiseShader::CreateFractalNoise(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
253 int numOctaves, SkScalar seed,
254 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700255 return new SkPerlinNoiseShader(kFractalNoise_Type, baseFrequencyX, baseFrequencyY, numOctaves,
256 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000257}
258
commit-bot@chromium.org9fbbcca2014-04-01 16:09:37 +0000259SkShader* SkPerlinNoiseShader::CreateTurbulence(SkScalar baseFrequencyX, SkScalar baseFrequencyY,
sugoi@google.come3b4c502013-04-05 13:47:09 +0000260 int numOctaves, SkScalar seed,
261 const SkISize* tileSize) {
halcanary385fe4d2015-08-26 13:07:48 -0700262 return new SkPerlinNoiseShader(kTurbulence_Type, baseFrequencyX, baseFrequencyY, numOctaves,
263 seed, tileSize);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000264}
265
266SkPerlinNoiseShader::SkPerlinNoiseShader(SkPerlinNoiseShader::Type type,
267 SkScalar baseFrequencyX,
268 SkScalar baseFrequencyY,
269 int numOctaves,
270 SkScalar seed,
271 const SkISize* tileSize)
272 : fType(type)
273 , fBaseFrequencyX(baseFrequencyX)
274 , fBaseFrequencyY(baseFrequencyY)
commit-bot@chromium.orgce33d602013-11-25 21:46:31 +0000275 , fNumOctaves(numOctaves > 255 ? 255 : numOctaves/*[0,255] octaves allowed*/)
sugoi@google.come3b4c502013-04-05 13:47:09 +0000276 , fSeed(seed)
halcanary96fcdcc2015-08-27 07:41:13 -0700277 , fTileSize(nullptr == tileSize ? SkISize::Make(0, 0) : *tileSize)
commit-bot@chromium.orgfd5c9a62014-03-06 15:13:53 +0000278 , fStitchTiles(!fTileSize.isEmpty())
sugoi@google.come3b4c502013-04-05 13:47:09 +0000279{
280 SkASSERT(numOctaves >= 0 && numOctaves < 256);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000281}
282
sugoi@google.come3b4c502013-04-05 13:47:09 +0000283SkPerlinNoiseShader::~SkPerlinNoiseShader() {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000284}
285
reed9fa60da2014-08-21 07:59:51 -0700286SkFlattenable* SkPerlinNoiseShader::CreateProc(SkReadBuffer& buffer) {
287 Type type = (Type)buffer.readInt();
288 SkScalar freqX = buffer.readScalar();
289 SkScalar freqY = buffer.readScalar();
290 int octaves = buffer.readInt();
291 SkScalar seed = buffer.readScalar();
292 SkISize tileSize;
293 tileSize.fWidth = buffer.readInt();
294 tileSize.fHeight = buffer.readInt();
295
296 switch (type) {
297 case kFractalNoise_Type:
298 return SkPerlinNoiseShader::CreateFractalNoise(freqX, freqY, octaves, seed, &tileSize);
299 case kTurbulence_Type:
300 return SkPerlinNoiseShader::CreateTubulence(freqX, freqY, octaves, seed, &tileSize);
301 default:
halcanary96fcdcc2015-08-27 07:41:13 -0700302 return nullptr;
reed9fa60da2014-08-21 07:59:51 -0700303 }
304}
305
commit-bot@chromium.org8b0e8ac2014-01-30 18:58:24 +0000306void SkPerlinNoiseShader::flatten(SkWriteBuffer& buffer) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000307 buffer.writeInt((int) fType);
308 buffer.writeScalar(fBaseFrequencyX);
309 buffer.writeScalar(fBaseFrequencyY);
310 buffer.writeInt(fNumOctaves);
311 buffer.writeScalar(fSeed);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000312 buffer.writeInt(fTileSize.fWidth);
313 buffer.writeInt(fTileSize.fHeight);
314}
315
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000316SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::noise2D(
senorblancoca6a7c22014-06-27 13:35:52 -0700317 int channel, const StitchData& stitchData, const SkPoint& noiseVector) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000318 struct Noise {
319 int noisePositionIntegerValue;
senorblancoce6a3542014-06-12 11:24:19 -0700320 int nextNoisePositionIntegerValue;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000321 SkScalar noisePositionFractionValue;
322 Noise(SkScalar component)
323 {
324 SkScalar position = component + kPerlinNoise;
325 noisePositionIntegerValue = SkScalarFloorToInt(position);
326 noisePositionFractionValue = position - SkIntToScalar(noisePositionIntegerValue);
senorblancoce6a3542014-06-12 11:24:19 -0700327 nextNoisePositionIntegerValue = noisePositionIntegerValue + 1;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000328 }
329 };
330 Noise noiseX(noiseVector.x());
331 Noise noiseY(noiseVector.y());
332 SkScalar u, v;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000333 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000334 // If stitching, adjust lattice points accordingly.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000335 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000336 noiseX.noisePositionIntegerValue =
337 checkNoise(noiseX.noisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
338 noiseY.noisePositionIntegerValue =
339 checkNoise(noiseY.noisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
senorblancoce6a3542014-06-12 11:24:19 -0700340 noiseX.nextNoisePositionIntegerValue =
341 checkNoise(noiseX.nextNoisePositionIntegerValue, stitchData.fWrapX, stitchData.fWidth);
342 noiseY.nextNoisePositionIntegerValue =
343 checkNoise(noiseY.nextNoisePositionIntegerValue, stitchData.fWrapY, stitchData.fHeight);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000344 }
345 noiseX.noisePositionIntegerValue &= kBlockMask;
346 noiseY.noisePositionIntegerValue &= kBlockMask;
senorblancoce6a3542014-06-12 11:24:19 -0700347 noiseX.nextNoisePositionIntegerValue &= kBlockMask;
348 noiseY.nextNoisePositionIntegerValue &= kBlockMask;
349 int i =
senorblancoca6a7c22014-06-27 13:35:52 -0700350 fPaintingData->fLatticeSelector[noiseX.noisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700351 int j =
senorblancoca6a7c22014-06-27 13:35:52 -0700352 fPaintingData->fLatticeSelector[noiseX.nextNoisePositionIntegerValue];
senorblancoce6a3542014-06-12 11:24:19 -0700353 int b00 = (i + noiseY.noisePositionIntegerValue) & kBlockMask;
354 int b10 = (j + noiseY.noisePositionIntegerValue) & kBlockMask;
355 int b01 = (i + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
356 int b11 = (j + noiseY.nextNoisePositionIntegerValue) & kBlockMask;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000357 SkScalar sx = smoothCurve(noiseX.noisePositionFractionValue);
358 SkScalar sy = smoothCurve(noiseY.noisePositionFractionValue);
359 // This is taken 1:1 from SVG spec: http://www.w3.org/TR/SVG11/filters.html#feTurbulenceElement
360 SkPoint fractionValue = SkPoint::Make(noiseX.noisePositionFractionValue,
361 noiseY.noisePositionFractionValue); // Offset (0,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700362 u = fPaintingData->fGradient[channel][b00].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000363 fractionValue.fX -= SK_Scalar1; // Offset (-1,0)
senorblancoca6a7c22014-06-27 13:35:52 -0700364 v = fPaintingData->fGradient[channel][b10].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000365 SkScalar a = SkScalarInterp(u, v, sx);
366 fractionValue.fY -= SK_Scalar1; // Offset (-1,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700367 v = fPaintingData->fGradient[channel][b11].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000368 fractionValue.fX = noiseX.noisePositionFractionValue; // Offset (0,-1)
senorblancoca6a7c22014-06-27 13:35:52 -0700369 u = fPaintingData->fGradient[channel][b01].dot(fractionValue);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000370 SkScalar b = SkScalarInterp(u, v, sx);
371 return SkScalarInterp(a, b, sy);
372}
373
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000374SkScalar SkPerlinNoiseShader::PerlinNoiseShaderContext::calculateTurbulenceValueForPoint(
senorblancoca6a7c22014-06-27 13:35:52 -0700375 int channel, StitchData& stitchData, const SkPoint& point) const {
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000376 const SkPerlinNoiseShader& perlinNoiseShader = static_cast<const SkPerlinNoiseShader&>(fShader);
377 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000378 // Set up TurbulenceInitial stitch values.
senorblancoca6a7c22014-06-27 13:35:52 -0700379 stitchData = fPaintingData->fStitchDataInit;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000380 }
381 SkScalar turbulenceFunctionResult = 0;
senorblancoca6a7c22014-06-27 13:35:52 -0700382 SkPoint noiseVector(SkPoint::Make(SkScalarMul(point.x(), fPaintingData->fBaseFrequency.fX),
383 SkScalarMul(point.y(), fPaintingData->fBaseFrequency.fY)));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000384 SkScalar ratio = SK_Scalar1;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000385 for (int octave = 0; octave < perlinNoiseShader.fNumOctaves; ++octave) {
senorblancoca6a7c22014-06-27 13:35:52 -0700386 SkScalar noise = noise2D(channel, stitchData, noiseVector);
reed80ea19c2015-05-12 10:37:34 -0700387 SkScalar numer = (perlinNoiseShader.fType == kFractalNoise_Type) ?
388 noise : SkScalarAbs(noise);
389 turbulenceFunctionResult += numer / ratio;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000390 noiseVector.fX *= 2;
391 noiseVector.fY *= 2;
392 ratio *= 2;
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000393 if (perlinNoiseShader.fStitchTiles) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000394 // Update stitch values
395 stitchData.fWidth *= 2;
396 stitchData.fWrapX = stitchData.fWidth + kPerlinNoise;
397 stitchData.fHeight *= 2;
398 stitchData.fWrapY = stitchData.fHeight + kPerlinNoise;
399 }
400 }
401
402 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
403 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000404 if (perlinNoiseShader.fType == kFractalNoise_Type) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000405 turbulenceFunctionResult =
406 SkScalarMul(turbulenceFunctionResult, SK_ScalarHalf) + SK_ScalarHalf;
407 }
408
409 if (channel == 3) { // Scale alpha by paint value
reed80ea19c2015-05-12 10:37:34 -0700410 turbulenceFunctionResult *= SkIntToScalar(getPaintAlpha()) / 255;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000411 }
412
413 // Clamp result
414 return SkScalarPin(turbulenceFunctionResult, 0, SK_Scalar1);
415}
416
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000417SkPMColor SkPerlinNoiseShader::PerlinNoiseShaderContext::shade(
418 const SkPoint& point, StitchData& stitchData) const {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000419 SkPoint newPoint;
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000420 fMatrix.mapPoints(&newPoint, &point, 1);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000421 newPoint.fX = SkScalarRoundToScalar(newPoint.fX);
422 newPoint.fY = SkScalarRoundToScalar(newPoint.fY);
423
424 U8CPU rgba[4];
425 for (int channel = 3; channel >= 0; --channel) {
426 rgba[channel] = SkScalarFloorToInt(255 *
senorblancoca6a7c22014-06-27 13:35:52 -0700427 calculateTurbulenceValueForPoint(channel, stitchData, newPoint));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000428 }
429 return SkPreMultiplyARGB(rgba[3], rgba[0], rgba[1], rgba[2]);
430}
431
commit-bot@chromium.orgce56d962014-05-05 18:39:18 +0000432SkShader::Context* SkPerlinNoiseShader::onCreateContext(const ContextRec& rec,
433 void* storage) const {
halcanary385fe4d2015-08-26 13:07:48 -0700434 return new (storage) PerlinNoiseShaderContext(*this, rec);
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000435}
436
437size_t SkPerlinNoiseShader::contextSize() const {
438 return sizeof(PerlinNoiseShaderContext);
439}
440
441SkPerlinNoiseShader::PerlinNoiseShaderContext::PerlinNoiseShaderContext(
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000442 const SkPerlinNoiseShader& shader, const ContextRec& rec)
443 : INHERITED(shader, rec)
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000444{
commit-bot@chromium.orge901b6d2014-05-01 19:31:31 +0000445 SkMatrix newMatrix = *rec.fMatrix;
reed@google.comb67b8e62014-05-12 18:12:24 +0000446 newMatrix.preConcat(shader.getLocalMatrix());
447 if (rec.fLocalMatrix) {
448 newMatrix.preConcat(*rec.fLocalMatrix);
449 }
senorblanco@chromium.orga8d95f82014-04-04 14:46:10 +0000450 // This (1,1) translation is due to WebKit's 1 based coordinates for the noise
451 // (as opposed to 0 based, usually). The same adjustment is in the setData() function.
senorblancoca6a7c22014-06-27 13:35:52 -0700452 fMatrix.setTranslate(-newMatrix.getTranslateX() + SK_Scalar1, -newMatrix.getTranslateY() + SK_Scalar1);
halcanary385fe4d2015-08-26 13:07:48 -0700453 fPaintingData = new PaintingData(shader.fTileSize, shader.fSeed, shader.fBaseFrequencyX,
454 shader.fBaseFrequencyY, newMatrix);
senorblancoca6a7c22014-06-27 13:35:52 -0700455}
456
halcanary385fe4d2015-08-26 13:07:48 -0700457SkPerlinNoiseShader::PerlinNoiseShaderContext::~PerlinNoiseShaderContext() { delete fPaintingData; }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000458
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000459void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan(
460 int x, int y, SkPMColor result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000461 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
462 StitchData stitchData;
463 for (int i = 0; i < count; ++i) {
464 result[i] = shade(point, stitchData);
465 point.fX += SK_Scalar1;
466 }
467}
468
commit-bot@chromium.org87fcd952014-04-23 19:10:51 +0000469void SkPerlinNoiseShader::PerlinNoiseShaderContext::shadeSpan16(
470 int x, int y, uint16_t result[], int count) {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000471 SkPoint point = SkPoint::Make(SkIntToScalar(x), SkIntToScalar(y));
472 StitchData stitchData;
473 DITHER_565_SCAN(y);
474 for (int i = 0; i < count; ++i) {
475 unsigned dither = DITHER_VALUE(x);
476 result[i] = SkDitherRGB32To565(shade(point, stitchData), dither);
477 DITHER_INC_X(x);
478 point.fX += SK_Scalar1;
479 }
480}
481
482/////////////////////////////////////////////////////////////////////
483
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000484#if SK_SUPPORT_GPU
sugoi@google.come3b4c502013-04-05 13:47:09 +0000485
joshualittb0a8a372014-09-23 09:50:21 -0700486class GrGLPerlinNoise : public GrGLFragmentProcessor {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000487public:
joshualitteb2a6762014-12-04 11:35:33 -0800488 GrGLPerlinNoise(const GrProcessor&);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000489 virtual ~GrGLPerlinNoise() {}
sugoi@google.come3b4c502013-04-05 13:47:09 +0000490
wangyix7c157a92015-07-22 15:08:53 -0700491 virtual void emitCode(EmitArgs&) override;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000492
jvanverthcfc18862015-04-28 08:48:20 -0700493 static inline void GenKey(const GrProcessor&, const GrGLSLCaps&, GrProcessorKeyBuilder* b);
sugoi@google.com4775cba2013-04-17 13:46:56 +0000494
wangyixb1daa862015-08-18 11:29:31 -0700495protected:
egdaniel018fb622015-10-28 07:26:40 -0700496 void onSetData(const GrGLSLProgramDataManager&, const GrProcessor&) override;
wangyixb1daa862015-08-18 11:29:31 -0700497
sugoi@google.com4775cba2013-04-17 13:46:56 +0000498private:
sugoi@google.com4775cba2013-04-17 13:46:56 +0000499
egdaniel018fb622015-10-28 07:26:40 -0700500 GrGLSLProgramDataManager::UniformHandle fStitchDataUni;
501 SkPerlinNoiseShader::Type fType;
502 bool fStitchTiles;
503 int fNumOctaves;
504 GrGLSLProgramDataManager::UniformHandle fBaseFrequencyUni;
senorblancof3b50272014-06-16 10:49:58 -0700505
506private:
joshualittb0a8a372014-09-23 09:50:21 -0700507 typedef GrGLFragmentProcessor INHERITED;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000508};
509
510/////////////////////////////////////////////////////////////////////
511
joshualittb0a8a372014-09-23 09:50:21 -0700512class GrPerlinNoiseEffect : public GrFragmentProcessor {
sugoi@google.come3b4c502013-04-05 13:47:09 +0000513public:
bsalomon4a339522015-10-06 08:40:50 -0700514 static GrFragmentProcessor* Create(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) {
bsalomon4a339522015-10-06 08:40:50 -0700519 return new GrPerlinNoiseEffect(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
bsalomon4a339522015-10-06 08:40:50 -0700558 GrPerlinNoiseEffect(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,
bsalomon4a339522015-10-06 08:40:50 -0700613 kNone_SkFilterQuality);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000614}
sugoi@google.com4775cba2013-04-17 13:46:56 +0000615
joshualitteb2a6762014-12-04 11:35:33 -0800616GrGLPerlinNoise::GrGLPerlinNoise(const GrProcessor& processor)
617 : fType(processor.cast<GrPerlinNoiseEffect>().type())
joshualittb0a8a372014-09-23 09:50:21 -0700618 , fStitchTiles(processor.cast<GrPerlinNoiseEffect>().stitchTiles())
619 , fNumOctaves(processor.cast<GrPerlinNoiseEffect>().numOctaves()) {
sugoi@google.com4775cba2013-04-17 13:46:56 +0000620}
621
wangyix7c157a92015-07-22 15:08:53 -0700622void GrGLPerlinNoise::emitCode(EmitArgs& args) {
623 GrGLFragmentBuilder* fsBuilder = args.fBuilder->getFragmentShaderBuilder();
624 SkString vCoords = fsBuilder->ensureFSCoords2D(args.fCoords, 0);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000625
wangyix7c157a92015-07-22 15:08:53 -0700626 fBaseFrequencyUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
bsalomon422f56f2014-12-09 10:18:12 -0800627 kVec2f_GrSLType, kDefault_GrSLPrecision,
628 "baseFrequency");
wangyix7c157a92015-07-22 15:08:53 -0700629 const char* baseFrequencyUni = args.fBuilder->getUniformCStr(fBaseFrequencyUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000630
halcanary96fcdcc2015-08-27 07:41:13 -0700631 const char* stitchDataUni = nullptr;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000632 if (fStitchTiles) {
wangyix7c157a92015-07-22 15:08:53 -0700633 fStitchDataUni = args.fBuilder->addUniform(GrGLProgramBuilder::kFragment_Visibility,
bsalomon422f56f2014-12-09 10:18:12 -0800634 kVec2f_GrSLType, kDefault_GrSLPrecision,
635 "stitchData");
wangyix7c157a92015-07-22 15:08:53 -0700636 stitchDataUni = args.fBuilder->getUniformCStr(fStitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000637 }
638
sugoi@google.comd537af52013-06-10 13:59:25 +0000639 // There are 4 lines, so the center of each line is 1/8, 3/8, 5/8 and 7/8
640 const char* chanCoordR = "0.125";
641 const char* chanCoordG = "0.375";
642 const char* chanCoordB = "0.625";
643 const char* chanCoordA = "0.875";
644 const char* chanCoord = "chanCoord";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000645 const char* stitchData = "stitchData";
646 const char* ratio = "ratio";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000647 const char* noiseVec = "noiseVec";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000648 const char* noiseSmooth = "noiseSmooth";
senorblancoce6a3542014-06-12 11:24:19 -0700649 const char* floorVal = "floorVal";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000650 const char* fractVal = "fractVal";
651 const char* uv = "uv";
652 const char* ab = "ab";
653 const char* latticeIdx = "latticeIdx";
senorblancoce6a3542014-06-12 11:24:19 -0700654 const char* bcoords = "bcoords";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000655 const char* lattice = "lattice";
sugoi@google.come3b4c502013-04-05 13:47:09 +0000656 const char* inc8bit = "0.00390625"; // 1.0 / 256.0
657 // This is the math to convert the two 16bit integer packed into rgba 8 bit input into a
658 // [-1,1] vector and perform a dot product between that vector and the provided vector.
659 const char* dotLattice = "dot(((%s.ga + %s.rb * vec2(%s)) * vec2(2.0) - vec2(1.0)), %s);";
660
sugoi@google.comd537af52013-06-10 13:59:25 +0000661 // Add noise function
egdaniel0d3f0612015-10-21 10:45:48 -0700662 static const GrGLSLShaderVar gPerlinNoiseArgs[] = {
663 GrGLSLShaderVar(chanCoord, kFloat_GrSLType),
664 GrGLSLShaderVar(noiseVec, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000665 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000666
egdaniel0d3f0612015-10-21 10:45:48 -0700667 static const GrGLSLShaderVar gPerlinNoiseStitchArgs[] = {
668 GrGLSLShaderVar(chanCoord, kFloat_GrSLType),
669 GrGLSLShaderVar(noiseVec, kVec2f_GrSLType),
670 GrGLSLShaderVar(stitchData, kVec2f_GrSLType)
sugoi@google.comd537af52013-06-10 13:59:25 +0000671 };
sugoi@google.come3b4c502013-04-05 13:47:09 +0000672
sugoi@google.comd537af52013-06-10 13:59:25 +0000673 SkString noiseCode;
sugoi@google.come3b4c502013-04-05 13:47:09 +0000674
senorblancoce6a3542014-06-12 11:24:19 -0700675 noiseCode.appendf("\tvec4 %s;\n", floorVal);
676 noiseCode.appendf("\t%s.xy = floor(%s);\n", floorVal, noiseVec);
677 noiseCode.appendf("\t%s.zw = %s.xy + vec2(1.0);\n", floorVal, floorVal);
678 noiseCode.appendf("\tvec2 %s = fract(%s);\n", fractVal, noiseVec);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000679
680 // smooth curve : t * t * (3 - 2 * t)
senorblancoce6a3542014-06-12 11:24:19 -0700681 noiseCode.appendf("\n\tvec2 %s = %s * %s * (vec2(3.0) - vec2(2.0) * %s);",
682 noiseSmooth, fractVal, fractVal, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000683
684 // Adjust frequencies if we're stitching tiles
685 if (fStitchTiles) {
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000686 noiseCode.appendf("\n\tif(%s.x >= %s.x) { %s.x -= %s.x; }",
senorblancoce6a3542014-06-12 11:24:19 -0700687 floorVal, stitchData, floorVal, stitchData);
commit-bot@chromium.org98393202013-07-04 18:13:05 +0000688 noiseCode.appendf("\n\tif(%s.y >= %s.y) { %s.y -= %s.y; }",
senorblancoce6a3542014-06-12 11:24:19 -0700689 floorVal, stitchData, floorVal, stitchData);
690 noiseCode.appendf("\n\tif(%s.z >= %s.x) { %s.z -= %s.x; }",
691 floorVal, stitchData, floorVal, stitchData);
692 noiseCode.appendf("\n\tif(%s.w >= %s.y) { %s.w -= %s.y; }",
693 floorVal, stitchData, floorVal, stitchData);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000694 }
695
696 // Get texture coordinates and normalize
senorblancoce6a3542014-06-12 11:24:19 -0700697 noiseCode.appendf("\n\t%s = fract(floor(mod(%s, 256.0)) / vec4(256.0));\n",
698 floorVal, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000699
700 // Get permutation for x
701 {
702 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700703 xCoords.appendf("vec2(%s.x, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000704
sugoi@google.comd537af52013-06-10 13:59:25 +0000705 noiseCode.appendf("\n\tvec2 %s;\n\t%s.x = ", latticeIdx, latticeIdx);
wangyix7c157a92015-07-22 15:08:53 -0700706 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
707 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000708 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000709 }
710
711 // Get permutation for x + 1
712 {
713 SkString xCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700714 xCoords.appendf("vec2(%s.z, 0.5)", floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000715
sugoi@google.comd537af52013-06-10 13:59:25 +0000716 noiseCode.appendf("\n\t%s.y = ", latticeIdx);
wangyix7c157a92015-07-22 15:08:53 -0700717 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[0], xCoords.c_str(),
718 kVec2f_GrSLType);
sugoi@google.comd537af52013-06-10 13:59:25 +0000719 noiseCode.append(".r;");
sugoi@google.come3b4c502013-04-05 13:47:09 +0000720 }
721
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000722#if defined(SK_BUILD_FOR_ANDROID)
723 // Android rounding for Tegra devices, like, for example: Xoom (Tegra 2), Nexus 7 (Tegra 3).
724 // The issue is that colors aren't accurate enough on Tegra devices. For example, if an 8 bit
725 // value of 124 (or 0.486275 here) is entered, we can get a texture value of 123.513725
726 // (or 0.484368 here). The following rounding operation prevents these precision issues from
727 // affecting the result of the noise by making sure that we only have multiples of 1/255.
728 // (Note that 1/255 is about 0.003921569, which is the value used here).
729 noiseCode.appendf("\n\t%s = floor(%s * vec2(255.0) + vec2(0.5)) * vec2(0.003921569);",
730 latticeIdx, latticeIdx);
731#endif
732
sugoi@google.come3b4c502013-04-05 13:47:09 +0000733 // Get (x,y) coordinates with the permutated x
senorblancoce6a3542014-06-12 11:24:19 -0700734 noiseCode.appendf("\n\tvec4 %s = fract(%s.xyxy + %s.yyww);", bcoords, latticeIdx, floorVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000735
sugoi@google.comd537af52013-06-10 13:59:25 +0000736 noiseCode.appendf("\n\n\tvec2 %s;", uv);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000737 // Compute u, at offset (0,0)
738 {
739 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700740 latticeCoords.appendf("vec2(%s.x, %s)", bcoords, chanCoord);
sugoi@google.comd537af52013-06-10 13:59:25 +0000741 noiseCode.appendf("\n\tvec4 %s = ", lattice);
wangyix7c157a92015-07-22 15:08:53 -0700742 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000743 kVec2f_GrSLType);
744 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
745 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000746 }
747
sugoi@google.comd537af52013-06-10 13:59:25 +0000748 noiseCode.appendf("\n\t%s.x -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000749 // Compute v, at offset (-1,0)
750 {
751 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700752 latticeCoords.appendf("vec2(%s.y, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000753 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700754 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000755 kVec2f_GrSLType);
756 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
757 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000758 }
759
760 // Compute 'a' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000761 noiseCode.appendf("\n\tvec2 %s;", ab);
762 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 +0000763
sugoi@google.comd537af52013-06-10 13:59:25 +0000764 noiseCode.appendf("\n\t%s.y -= 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000765 // Compute v, at offset (-1,-1)
766 {
767 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700768 latticeCoords.appendf("vec2(%s.w, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000769 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700770 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000771 kVec2f_GrSLType);
772 noiseCode.appendf(".bgra;\n\t%s.y = ", uv);
773 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000774 }
775
sugoi@google.comd537af52013-06-10 13:59:25 +0000776 noiseCode.appendf("\n\t%s.x += 1.0;", fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000777 // Compute u, at offset (0,-1)
778 {
779 SkString latticeCoords("");
senorblancoce6a3542014-06-12 11:24:19 -0700780 latticeCoords.appendf("vec2(%s.z, %s)", bcoords, chanCoord);
commit-bot@chromium.org344cf452013-06-17 14:19:01 +0000781 noiseCode.append("\n\tlattice = ");
wangyix7c157a92015-07-22 15:08:53 -0700782 fsBuilder->appendTextureLookup(&noiseCode, args.fSamplers[1], latticeCoords.c_str(),
sugoi@google.comd537af52013-06-10 13:59:25 +0000783 kVec2f_GrSLType);
784 noiseCode.appendf(".bgra;\n\t%s.x = ", uv);
785 noiseCode.appendf(dotLattice, lattice, lattice, inc8bit, fractVal);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000786 }
787
788 // Compute 'b' as a linear interpolation of 'u' and 'v'
sugoi@google.comd537af52013-06-10 13:59:25 +0000789 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 +0000790 // Compute the noise as a linear interpolation of 'a' and 'b'
sugoi@google.comd537af52013-06-10 13:59:25 +0000791 noiseCode.appendf("\n\treturn mix(%s.x, %s.y, %s.y);\n", ab, ab, noiseSmooth);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000792
sugoi@google.comd537af52013-06-10 13:59:25 +0000793 SkString noiseFuncName;
794 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700795 fsBuilder->emitFunction(kFloat_GrSLType,
commit-bot@chromium.org74a3a212013-08-30 19:43:59 +0000796 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseStitchArgs),
797 gPerlinNoiseStitchArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000798 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700799 fsBuilder->emitFunction(kFloat_GrSLType,
commit-bot@chromium.org74a3a212013-08-30 19:43:59 +0000800 "perlinnoise", SK_ARRAY_COUNT(gPerlinNoiseArgs),
801 gPerlinNoiseArgs, noiseCode.c_str(), &noiseFuncName);
sugoi@google.comd537af52013-06-10 13:59:25 +0000802 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000803
sugoi@google.comd537af52013-06-10 13:59:25 +0000804 // There are rounding errors if the floor operation is not performed here
joshualitt30ba4362014-08-21 20:18:45 -0700805 fsBuilder->codeAppendf("\n\t\tvec2 %s = floor(%s.xy) * %s;",
senorblancoca6a7c22014-06-27 13:35:52 -0700806 noiseVec, vCoords.c_str(), baseFrequencyUni);
sugoi@google.comd537af52013-06-10 13:59:25 +0000807
808 // Clear the color accumulator
wangyix7c157a92015-07-22 15:08:53 -0700809 fsBuilder->codeAppendf("\n\t\t%s = vec4(0.0);", args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000810
811 if (fStitchTiles) {
sugoi@google.comd537af52013-06-10 13:59:25 +0000812 // Set up TurbulenceInitial stitch values.
joshualitt30ba4362014-08-21 20:18:45 -0700813 fsBuilder->codeAppendf("\n\t\tvec2 %s = %s;", stitchData, stitchDataUni);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000814 }
sugoi@google.come3b4c502013-04-05 13:47:09 +0000815
joshualitt30ba4362014-08-21 20:18:45 -0700816 fsBuilder->codeAppendf("\n\t\tfloat %s = 1.0;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000817
818 // Loop over all octaves
joshualitt30ba4362014-08-21 20:18:45 -0700819 fsBuilder->codeAppendf("\n\t\tfor (int octave = 0; octave < %d; ++octave) {", fNumOctaves);
sugoi@google.comd537af52013-06-10 13:59:25 +0000820
wangyix7c157a92015-07-22 15:08:53 -0700821 fsBuilder->codeAppendf("\n\t\t\t%s += ", args.fOutputColor);
sugoi@google.comd537af52013-06-10 13:59:25 +0000822 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
joshualitt30ba4362014-08-21 20:18:45 -0700823 fsBuilder->codeAppend("abs(");
sugoi@google.comd537af52013-06-10 13:59:25 +0000824 }
825 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700826 fsBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000827 "vec4(\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s),"
828 "\n\t\t\t\t%s(%s, %s, %s),\n\t\t\t\t%s(%s, %s, %s))",
829 noiseFuncName.c_str(), chanCoordR, noiseVec, stitchData,
830 noiseFuncName.c_str(), chanCoordG, noiseVec, stitchData,
831 noiseFuncName.c_str(), chanCoordB, noiseVec, stitchData,
832 noiseFuncName.c_str(), chanCoordA, noiseVec, stitchData);
833 } else {
joshualitt30ba4362014-08-21 20:18:45 -0700834 fsBuilder->codeAppendf(
sugoi@google.comd537af52013-06-10 13:59:25 +0000835 "vec4(\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s),"
836 "\n\t\t\t\t%s(%s, %s),\n\t\t\t\t%s(%s, %s))",
837 noiseFuncName.c_str(), chanCoordR, noiseVec,
838 noiseFuncName.c_str(), chanCoordG, noiseVec,
839 noiseFuncName.c_str(), chanCoordB, noiseVec,
840 noiseFuncName.c_str(), chanCoordA, noiseVec);
841 }
842 if (fType != SkPerlinNoiseShader::kFractalNoise_Type) {
joshualitt30ba4362014-08-21 20:18:45 -0700843 fsBuilder->codeAppendf(")"); // end of "abs("
sugoi@google.comd537af52013-06-10 13:59:25 +0000844 }
joshualitt30ba4362014-08-21 20:18:45 -0700845 fsBuilder->codeAppendf(" * %s;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000846
joshualitt30ba4362014-08-21 20:18:45 -0700847 fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", noiseVec);
848 fsBuilder->codeAppendf("\n\t\t\t%s *= 0.5;", ratio);
sugoi@google.comd537af52013-06-10 13:59:25 +0000849
850 if (fStitchTiles) {
joshualitt30ba4362014-08-21 20:18:45 -0700851 fsBuilder->codeAppendf("\n\t\t\t%s *= vec2(2.0);", stitchData);
sugoi@google.comd537af52013-06-10 13:59:25 +0000852 }
joshualitt30ba4362014-08-21 20:18:45 -0700853 fsBuilder->codeAppend("\n\t\t}"); // end of the for loop on octaves
sugoi@google.come3b4c502013-04-05 13:47:09 +0000854
855 if (fType == SkPerlinNoiseShader::kFractalNoise_Type) {
856 // The value of turbulenceFunctionResult comes from ((turbulenceFunctionResult) + 1) / 2
857 // by fractalNoise and (turbulenceFunctionResult) by turbulence.
wangyix7c157a92015-07-22 15:08:53 -0700858 fsBuilder->codeAppendf("\n\t\t%s = %s * vec4(0.5) + vec4(0.5);",
859 args.fOutputColor,args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000860 }
861
sugoi@google.come3b4c502013-04-05 13:47:09 +0000862 // Clamp values
wangyix7c157a92015-07-22 15:08:53 -0700863 fsBuilder->codeAppendf("\n\t\t%s = clamp(%s, 0.0, 1.0);", args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000864
865 // Pre-multiply the result
joshualitt30ba4362014-08-21 20:18:45 -0700866 fsBuilder->codeAppendf("\n\t\t%s = vec4(%s.rgb * %s.aaa, %s.a);\n",
wangyix7c157a92015-07-22 15:08:53 -0700867 args.fOutputColor, args.fOutputColor,
868 args.fOutputColor, args.fOutputColor);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000869}
870
jvanverthcfc18862015-04-28 08:48:20 -0700871void GrGLPerlinNoise::GenKey(const GrProcessor& processor, const GrGLSLCaps&,
joshualittb0a8a372014-09-23 09:50:21 -0700872 GrProcessorKeyBuilder* b) {
873 const GrPerlinNoiseEffect& turbulence = processor.cast<GrPerlinNoiseEffect>();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000874
bsalomon63e99f72014-07-21 08:03:14 -0700875 uint32_t key = turbulence.numOctaves();
sugoi@google.come3b4c502013-04-05 13:47:09 +0000876
877 key = key << 3; // Make room for next 3 bits
878
879 switch (turbulence.type()) {
880 case SkPerlinNoiseShader::kFractalNoise_Type:
881 key |= 0x1;
882 break;
883 case SkPerlinNoiseShader::kTurbulence_Type:
884 key |= 0x2;
885 break;
886 default:
887 // leave key at 0
888 break;
889 }
890
891 if (turbulence.stitchTiles()) {
892 key |= 0x4; // Flip the 3rd bit if tile stitching is on
893 }
894
bsalomon63e99f72014-07-21 08:03:14 -0700895 b->add32(key);
sugoi@google.come3b4c502013-04-05 13:47:09 +0000896}
897
egdaniel018fb622015-10-28 07:26:40 -0700898void GrGLPerlinNoise::onSetData(const GrGLSLProgramDataManager& pdman,
899 const GrProcessor& processor) {
wangyixb1daa862015-08-18 11:29:31 -0700900 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,
bsalomon4a339522015-10-06 08:40:50 -0700919 SkFilterQuality) const {
bsalomon49f085d2014-09-05 13:34:00 -0700920 SkASSERT(context);
mtklein3f3b3d02014-12-01 11:47:08 -0800921
commit-bot@chromium.org96fb7482014-05-09 20:28:11 +0000922 SkMatrix localMatrix = this->getLocalMatrix();
923 if (externalLocalMatrix) {
924 localMatrix.preConcat(*externalLocalMatrix);
925 }
926
joshualitt5531d512014-12-17 15:50:11 -0800927 SkMatrix matrix = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700928 matrix.preConcat(localMatrix);
929
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000930 if (0 == fNumOctaves) {
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000931 if (kFractalNoise_Type == fType) {
bsalomonc21b09e2015-08-28 18:46:56 -0700932 // Extract the incoming alpha and emit rgba = (a/4, a/4, a/4, a/2)
933 SkAutoTUnref<const GrFragmentProcessor> inner(
934 GrConstColorProcessor::Create(0x80404040,
935 GrConstColorProcessor::kModulateRGBA_InputMode));
bsalomonf1b7a1d2015-09-28 06:26:28 -0700936 return GrFragmentProcessor::MulOutputByInputAlpha(inner);
reedcff10b22015-03-03 06:41:45 -0800937 }
bsalomonc21b09e2015-08-28 18:46:56 -0700938 // Emit zero.
939 return GrConstColorProcessor::Create(0x0, GrConstColorProcessor::kIgnore_InputMode);
commit-bot@chromium.orgc2a0ea62013-11-06 10:08:38 +0000940 }
941
sugoi@google.come3b4c502013-04-05 13:47:09 +0000942 // Either we don't stitch tiles, either we have a valid tile size
943 SkASSERT(!fStitchTiles || !fTileSize.isEmpty());
944
joshualittb0a8a372014-09-23 09:50:21 -0700945 SkPerlinNoiseShader::PaintingData* paintingData =
halcanary385fe4d2015-08-26 13:07:48 -0700946 new PaintingData(fTileSize, fSeed, fBaseFrequencyX, fBaseFrequencyY, matrix);
bsalomonbcf0a522014-10-08 08:40:09 -0700947 SkAutoTUnref<GrTexture> permutationsTexture(
bsalomonafa95e22015-10-12 10:39:46 -0700948 GrRefCachedBitmapTexture(context, paintingData->getPermutationsBitmap(),
949 GrTextureParams::ClampNoFilter()));
bsalomonbcf0a522014-10-08 08:40:09 -0700950 SkAutoTUnref<GrTexture> noiseTexture(
bsalomonafa95e22015-10-12 10:39:46 -0700951 GrRefCachedBitmapTexture(context, paintingData->getNoiseBitmap(),
952 GrTextureParams::ClampNoFilter()));
sugoi@google.come3b4c502013-04-05 13:47:09 +0000953
joshualitt5531d512014-12-17 15:50:11 -0800954 SkMatrix m = viewM;
senorblancoca6a7c22014-06-27 13:35:52 -0700955 m.setTranslateX(-localMatrix.getTranslateX() + SK_Scalar1);
956 m.setTranslateY(-localMatrix.getTranslateY() + SK_Scalar1);
bsalomon49f085d2014-09-05 13:34:00 -0700957 if ((permutationsTexture) && (noiseTexture)) {
bsalomonc21b09e2015-08-28 18:46:56 -0700958 SkAutoTUnref<GrFragmentProcessor> inner(
bsalomon4a339522015-10-06 08:40:50 -0700959 GrPerlinNoiseEffect::Create(fType,
bsalomonc21b09e2015-08-28 18:46:56 -0700960 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